- java.lang.Object
-
- org.xnio.conduits.ConduitReadableByteChannel
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.nio.channels.Channel
,java.nio.channels.ReadableByteChannel
public final class ConduitReadableByteChannel extends java.lang.Object implements java.nio.channels.ReadableByteChannel
A byte channel which wraps a conduit.- Author:
- David M. Lloyd
-
-
Constructor Summary
Constructors Constructor Description ConduitReadableByteChannel(StreamSourceConduit conduit)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
isOpen()
int
read(java.nio.ByteBuffer dst)
-
-
-
Constructor Detail
-
ConduitReadableByteChannel
public ConduitReadableByteChannel(StreamSourceConduit conduit)
Construct a new instance.- Parameters:
conduit
- the conduit to delegate to
-
-
Method Detail
-
read
public int read(java.nio.ByteBuffer dst) throws java.io.IOException
- Specified by:
read
in interfacejava.nio.channels.ReadableByteChannel
- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpen
in interfacejava.nio.channels.Channel
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.nio.channels.Channel
- Specified by:
close
in interfacejava.io.Closeable
- Throws:
java.io.IOException
-
-