org.jboss.netty.channel.Channels.bind(ChannelHandlerContext, Channel, ChannelFuture, SocketAddress)
|
org.jboss.netty.channel.Channels.close(ChannelHandlerContext, Channel, ChannelFuture)
|
org.jboss.netty.channel.Channels.connect(ChannelHandlerContext, Channel, ChannelFuture, SocketAddress)
|
org.jboss.netty.channel.Channels.disconnect(ChannelHandlerContext, Channel, ChannelFuture)
|
org.jboss.netty.channel.Channels.fireChannelBound(ChannelHandlerContext, Channel, SocketAddress)
|
org.jboss.netty.channel.Channels.fireChannelClosed(ChannelHandlerContext, Channel)
|
org.jboss.netty.channel.Channels.fireChannelConnected(ChannelHandlerContext, Channel, SocketAddress)
|
org.jboss.netty.channel.Channels.fireChannelDisconnected(ChannelHandlerContext, Channel)
|
org.jboss.netty.channel.Channels.fireChannelInterestChanged(ChannelHandlerContext, Channel, int)
|
org.jboss.netty.channel.Channels.fireChannelInterestChanged(Channel, int)
|
org.jboss.netty.channel.Channels.fireChannelOpen(ChannelHandlerContext, Channel)
|
org.jboss.netty.channel.Channels.fireChannelUnbound(ChannelHandlerContext, Channel)
|
org.jboss.netty.channel.Channels.fireExceptionCaught(ChannelHandlerContext, Channel, Throwable)
|
org.jboss.netty.channel.Channels.fireMessageReceived(ChannelHandlerContext, Channel, Object)
|
org.jboss.netty.channel.Channels.fireMessageReceived(ChannelHandlerContext, Channel, Object, SocketAddress)
|
org.jboss.netty.channel.ChannelConfig.getWriteTimeoutMillis()
Use WriteTimeoutHandler instead.
Returns the write timeout of the channel in milliseconds. If a write
operation is not completed within the write timeout, an
IOException will be raised. If the Channel does not
support write operation, this property is not used at all, and therefore
will be ignored.
|
org.jboss.netty.channel.DefaultChannelConfig.getWriteTimeoutMillis()
|
org.jboss.netty.channel.DefaultServerChannelConfig.getWriteTimeoutMillis()
|
org.jboss.netty.channel.socket.http.HttpTunnelingSocketChannelConfig.getWriteTimeoutMillis() |
org.jboss.netty.channel.socket.nio.NioSocketChannelConfig.isReadWriteFair()
This property has been replaced by the
writeBufferHighWaterMark and writeBufferLowWaterMark .
Returns true if and only if an I/O thread should do its effort
to balance the ratio of read and write operations. Assuring
the read-write fairness is sometimes necessary in a high speed network
because a certain channel can spend too much time on flushing the
large number of write requests not giving enough time for other channels
to perform I/O. The default value is false .
|
org.jboss.netty.channel.Channels.messageEvent(Channel, ChannelFuture, Object)
|
org.jboss.netty.channel.Channels.messageEvent(Channel, ChannelFuture, Object, SocketAddress)
|
org.jboss.netty.handler.codec.serialization.ObjectDecoderInputStream.readLine() |
org.jboss.netty.channel.Channels.setInterestOps(ChannelHandlerContext, Channel, ChannelFuture, int)
|
org.jboss.netty.channel.socket.nio.NioSocketChannelConfig.setReadWriteFair(boolean)
This property has been replaced by the
writeBufferHighWaterMark and writeBufferLowWaterMark .
Sets if an I/O thread should balance the ratio of read and write
operations. Assuring the read-write fairness is sometimes necessary
in a high speed network because a certain channel can spend too much
time on flushing the large number of write requests not giving enough
time for other channels to perform I/O. The default value is
false .
|
org.jboss.netty.channel.ChannelConfig.setWriteTimeoutMillis(int)
Use WriteTimeoutHandler instead.
Sets the write timeout of the channel in milliseconds. If a write
operation is not completed within the write timeout, an
IOException will be raised. If the Channel does not
support write operation, this property is not used at all, and therefore
will be ignored.
|
org.jboss.netty.channel.DefaultChannelConfig.setWriteTimeoutMillis(int)
|
org.jboss.netty.channel.DefaultServerChannelConfig.setWriteTimeoutMillis(int)
|
org.jboss.netty.channel.socket.http.HttpTunnelingSocketChannelConfig.setWriteTimeoutMillis(int) |
org.jboss.netty.channel.Channels.unbind(ChannelHandlerContext, Channel, ChannelFuture)
|
org.jboss.netty.channel.Channels.write(ChannelHandlerContext, Channel, ChannelFuture, Object)
|
org.jboss.netty.channel.Channels.write(ChannelHandlerContext, Channel, ChannelFuture, Object, SocketAddress)
|