- java.lang.Object
-
- org.xnio.conduits.ConduitWritableByteChannel
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.nio.channels.Channel,java.nio.channels.WritableByteChannel
public final class ConduitWritableByteChannel extends java.lang.Object implements java.nio.channels.WritableByteChannelA byte channel which wraps a conduit.- Author:
- David M. Lloyd
-
-
Constructor Summary
Constructors Constructor Description ConduitWritableByteChannel(StreamSinkConduit conduit)Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanisOpen()intwrite(java.nio.ByteBuffer src)
-
-
-
Constructor Detail
-
ConduitWritableByteChannel
public ConduitWritableByteChannel(StreamSinkConduit conduit)
Construct a new instance.- Parameters:
conduit- the conduit to delegate to
-
-
Method Detail
-
write
public int write(java.nio.ByteBuffer src) throws java.io.IOException- Specified by:
writein interfacejava.nio.channels.WritableByteChannel- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpenin interfacejava.nio.channels.Channel
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.nio.channels.Channel- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-