com.javageeks.net
Class NamedPipeInputStream

java.lang.Object
  |
  +--java.io.InputStream
        |
        +--com.javageeks.net.NamedPipeInputStream

public class NamedPipeInputStream
extends java.io.InputStream

Receive input from an NT named pipe (presumably with INBOUND mode set on it). Can only be obtained from a NamedPipe instance; cannot be instantiated on its own.


Method Summary
 int available()
           
 void close()
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] b)
           
 
Methods inherited from class java.io.InputStream
mark, read, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

available

public int available()
Overrides:
available in class java.io.InputStream

close

public void close()
Overrides:
close in class java.io.InputStream

markSupported

public boolean markSupported()
Overrides:
markSupported in class java.io.InputStream

read

public int read(byte[] b)
Overrides:
read in class java.io.InputStream

read

public int read()
Overrides:
read in class java.io.InputStream