Package io.netty.channel.unix
Class SocketWritableByteChannel
- java.lang.Object
-
- io.netty.channel.unix.SocketWritableByteChannel
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.nio.channels.Channel,java.nio.channels.WritableByteChannel
public abstract class SocketWritableByteChannel extends java.lang.Object implements java.nio.channels.WritableByteChannel
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSocketWritableByteChannel(FileDescriptor fd)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract io.netty.buffer.ByteBufAllocatoralloc()voidclose()booleanisOpen()intwrite(java.nio.ByteBuffer src)
-
-
-
Constructor Detail
-
SocketWritableByteChannel
protected SocketWritableByteChannel(FileDescriptor fd)
-
-
Method Detail
-
write
public final int write(java.nio.ByteBuffer src) throws java.io.IOException- Specified by:
writein interfacejava.nio.channels.WritableByteChannel- Throws:
java.io.IOException
-
isOpen
public final boolean isOpen()
- Specified by:
isOpenin interfacejava.nio.channels.Channel
-
close
public final 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
-
alloc
protected abstract io.netty.buffer.ByteBufAllocator alloc()
-
-