Package org.apache.mina.handler.support
Class IoSessionInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.mina.handler.support.IoSessionInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class IoSessionInputStream extends java.io.InputStream
AnInputStream
that buffers data read fromIoHandler.messageReceived(IoSession, Object)
events.
-
-
Constructor Summary
Constructors Constructor Description IoSessionInputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
int
read()
int
read(byte[] b, int off, int len)
void
throwException(java.io.IOException e)
void
write(ByteBuffer src)
-
-
-
Method Detail
-
available
public int available()
- Overrides:
available
in classjava.io.InputStream
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
write
public void write(ByteBuffer src)
-
throwException
public void throwException(java.io.IOException e)
-
-