org.apache.tools.ant.util
Class KeepAliveInputStream
java.lang.Object
|
+--java.io.InputStream
|
+--java.io.FilterInputStream
|
+--org.apache.tools.ant.util.KeepAliveInputStream
- public class KeepAliveInputStream
- extends java.io.FilterInputStream
Class that can be used to wrap System.in
without getting anxious about any client closing the stream.
In code-language it means that it is not necessary to do:
if (out != System.in) {
in.close();
}
- Since:
- Ant 1.6
Fields inherited from class java.io.FilterInputStream |
in |
Method Summary |
void |
close()
this method does nothing |
Methods inherited from class java.io.FilterInputStream |
available, mark, markSupported, read, read, read, reset, skip |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
KeepAliveInputStream
public KeepAliveInputStream(java.io.InputStream in)
close
public void close()
throws java.io.IOException
- this method does nothing
- Overrides:
close
in class java.io.FilterInputStream
java.io.IOException
Copyright © 2000-2004 Apache Software Foundation. All Rights Reserved.