A B C D E F G H I L M N R S T U V W 

A

AbstractTrafficShapingHandler - Class in io.netty.handler.traffic
AbstractTrafficShapingHandler allows to limit the global bandwidth (see GlobalTrafficShapingHandler) or per session bandwidth (see ChannelTrafficShapingHandler), as traffic shaping.
AbstractTrafficShapingHandler(long, long, long) - Constructor for class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
AbstractTrafficShapingHandler(long, long) - Constructor for class io.netty.handler.traffic.AbstractTrafficShapingHandler
Constructor using default Check Interval
AbstractTrafficShapingHandler() - Constructor for class io.netty.handler.traffic.AbstractTrafficShapingHandler
Constructor using NO LIMIT and default Check Interval
AbstractTrafficShapingHandler(long) - Constructor for class io.netty.handler.traffic.AbstractTrafficShapingHandler
Constructor using NO LIMIT
ALL_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 

B

bind(ChannelHandlerContext, SocketAddress, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
bind(ChannelHandlerContext, SocketAddress, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
bind(ChannelHandlerContext, SocketAddress, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
ByteLoggingHandler - Class in io.netty.handler.logging
 
ByteLoggingHandler() - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 
ByteLoggingHandler(Class<?>, LogLevel) - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 
ByteLoggingHandler(Class<?>) - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 
ByteLoggingHandler(LogLevel) - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 
ByteLoggingHandler(String, LogLevel) - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 
ByteLoggingHandler(String) - Constructor for class io.netty.handler.logging.ByteLoggingHandler
 

C

cause() - Method in class io.netty.handler.ssl.SslHandshakeCompletionEvent
Return the Throwable if SslHandshakeCompletionEvent.isSuccess() returns false and so the handshake failed.
channelActive(ChannelHandlerContext) - Method in class io.netty.handler.logging.LoggingHandler
 
channelActive(ChannelHandlerContext) - Method in class io.netty.handler.ssl.SslHandler
Issues a SSL handshake once connected when used in client-mode
channelActive(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
channelActive(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
channelIdle(ChannelHandlerContext, IdleStateEvent) - Method in class io.netty.handler.timeout.IdleStateHandler
 
channelInactive(ChannelHandlerContext) - Method in class io.netty.handler.logging.LoggingHandler
 
channelInactive(ChannelHandlerContext) - Method in class io.netty.handler.ssl.SslHandler
 
channelInactive(ChannelHandlerContext) - Method in class io.netty.handler.stream.ChunkedWriteHandler
 
channelInactive(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
channelInactive(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
channelRegistered(ChannelHandlerContext) - Method in class io.netty.handler.logging.LoggingHandler
 
channelRegistered(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
channelRegistered(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
ChannelTrafficShapingHandler - Class in io.netty.handler.traffic
This implementation of the AbstractTrafficShapingHandler is for channel traffic shaping, that is to say a per channel limitation of the bandwidth.
ChannelTrafficShapingHandler(long, long, long) - Constructor for class io.netty.handler.traffic.ChannelTrafficShapingHandler
Create a new instance
ChannelTrafficShapingHandler(long, long) - Constructor for class io.netty.handler.traffic.ChannelTrafficShapingHandler
Create a new instance
ChannelTrafficShapingHandler(long) - Constructor for class io.netty.handler.traffic.ChannelTrafficShapingHandler
Create a new instance
channelUnregistered(ChannelHandlerContext) - Method in class io.netty.handler.logging.LoggingHandler
 
checkInterval - Variable in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Delay between two performance snapshots
checkInterval() - Method in class io.netty.handler.traffic.TrafficCounter
 
ChunkedByteInput - Interface in io.netty.handler.stream
ChunkedInput which read its chunks and transfer them to a ByteBuf
ChunkedFile - Class in io.netty.handler.stream
A ChunkedByteInput that fetches data from a file chunk by chunk.
ChunkedFile(File) - Constructor for class io.netty.handler.stream.ChunkedFile
Creates a new instance that fetches data from the specified file.
ChunkedFile(File, int) - Constructor for class io.netty.handler.stream.ChunkedFile
Creates a new instance that fetches data from the specified file.
ChunkedFile(RandomAccessFile) - Constructor for class io.netty.handler.stream.ChunkedFile
Creates a new instance that fetches data from the specified file.
ChunkedFile(RandomAccessFile, int) - Constructor for class io.netty.handler.stream.ChunkedFile
Creates a new instance that fetches data from the specified file.
ChunkedFile(RandomAccessFile, long, long, int) - Constructor for class io.netty.handler.stream.ChunkedFile
Creates a new instance that fetches data from the specified file.
ChunkedInput<B> - Interface in io.netty.handler.stream
A data stream of indefinite length which is consumed by ChunkedWriteHandler.
ChunkedMessageInput<T> - Interface in io.netty.handler.stream
ChunkedInput which reads its chunks and transfer it to a Queue
ChunkedNioFile - Class in io.netty.handler.stream
A ChunkedByteInput that fetches data from a file chunk by chunk using NIO FileChannel.
ChunkedNioFile(File) - Constructor for class io.netty.handler.stream.ChunkedNioFile
Creates a new instance that fetches data from the specified file.
ChunkedNioFile(File, int) - Constructor for class io.netty.handler.stream.ChunkedNioFile
Creates a new instance that fetches data from the specified file.
ChunkedNioFile(FileChannel) - Constructor for class io.netty.handler.stream.ChunkedNioFile
Creates a new instance that fetches data from the specified file.
ChunkedNioFile(FileChannel, int) - Constructor for class io.netty.handler.stream.ChunkedNioFile
Creates a new instance that fetches data from the specified file.
ChunkedNioFile(FileChannel, long, long, int) - Constructor for class io.netty.handler.stream.ChunkedNioFile
Creates a new instance that fetches data from the specified file.
ChunkedNioStream - Class in io.netty.handler.stream
A ChunkedByteInput that fetches data from a ReadableByteChannel chunk by chunk.
ChunkedNioStream(ReadableByteChannel) - Constructor for class io.netty.handler.stream.ChunkedNioStream
Creates a new instance that fetches data from the specified channel.
ChunkedNioStream(ReadableByteChannel, int) - Constructor for class io.netty.handler.stream.ChunkedNioStream
Creates a new instance that fetches data from the specified channel.
ChunkedStream - Class in io.netty.handler.stream
A ChunkedByteInput that fetches data from an InputStream chunk by chunk.
ChunkedStream(InputStream) - Constructor for class io.netty.handler.stream.ChunkedStream
Creates a new instance that fetches data from the specified stream.
ChunkedStream(InputStream, int) - Constructor for class io.netty.handler.stream.ChunkedStream
Creates a new instance that fetches data from the specified stream.
ChunkedWriteHandler - Class in io.netty.handler.stream
A ChannelHandler that adds support for writing a large data stream asynchronously neither spending a lot of memory nor getting OutOfMemoryError.
ChunkedWriteHandler() - Constructor for class io.netty.handler.stream.ChunkedWriteHandler
 
ChunkedWriteHandler(int) - Constructor for class io.netty.handler.stream.ChunkedWriteHandler
 
close(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
close() - Method in class io.netty.handler.ssl.SslHandler
Sends an SSL close_notify message to the specified channel and destroys the underlying SSLEngine.
close(ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
close(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
close() - Method in class io.netty.handler.stream.ChunkedFile
 
close() - Method in interface io.netty.handler.stream.ChunkedInput
Releases the resources associated with the input.
close() - Method in class io.netty.handler.stream.ChunkedNioFile
 
close() - Method in class io.netty.handler.stream.ChunkedNioStream
 
close() - Method in class io.netty.handler.stream.ChunkedStream
 
close(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
configure(long, long, long) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Change the underlying limitations and check interval.
configure(long, long) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Change the underlying limitations.
configure(long) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Change the check interval.
configure(long) - Method in class io.netty.handler.traffic.TrafficCounter
Change checkInterval between two computations in millisecond
connect(ChannelHandlerContext, SocketAddress, SocketAddress, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
connect(ChannelHandlerContext, SocketAddress, SocketAddress, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
connect(ChannelHandlerContext, SocketAddress, SocketAddress, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
cumulativeReadBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 
cumulativeWrittenBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 
currentOffset() - Method in class io.netty.handler.stream.ChunkedFile
Returns the offset in the file where the transfer is happening currently.
currentOffset() - Method in class io.netty.handler.stream.ChunkedNioFile
Returns the offset in the file where the transfer is happening currently.
currentReadBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 
currentWrittenBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 

D

decode(ChannelHandlerContext, ByteBuf, MessageList<Object>) - Method in class io.netty.handler.ssl.SslHandler
 
DEFAULT_CHECK_INTERVAL - Static variable in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Default delay between two checks: 1s
deregister(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
deregister(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
deregister(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
disconnect(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
disconnect(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
disconnect(ChannelHandlerContext, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
doAccounting(TrafficCounter) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Called each time the accounting is computed from the TrafficCounters.

E

endOffset() - Method in class io.netty.handler.stream.ChunkedFile
Returns the offset in the file where the transfer will end.
endOffset() - Method in class io.netty.handler.stream.ChunkedNioFile
Returns the offset in the file where the transfer will end.
engine() - Method in class io.netty.handler.ssl.SslHandler
Returns the SSLEngine which is used by this handler.
exceptionCaught(ChannelHandlerContext, Throwable) - Method in class io.netty.handler.logging.LoggingHandler
 
exceptionCaught(ChannelHandlerContext, Throwable) - Method in class io.netty.handler.ssl.SslHandler
 

F

fillInStackTrace() - Method in exception io.netty.handler.timeout.TimeoutException
 
FIRST_ALL_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 
FIRST_READER_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 
FIRST_WRITER_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 
format(ChannelHandlerContext, String) - Method in class io.netty.handler.logging.LoggingHandler
 
formatBuffer(String, ByteBuf) - Method in class io.netty.handler.logging.ByteLoggingHandler
 
formatBuffer(String, ByteBuf) - Method in class io.netty.handler.logging.LoggingHandler
 
formatBuffer(String, Object[], int, int) - Method in class io.netty.handler.logging.LoggingHandler
 
formatBuffer(String, MessageList<Object>) - Method in class io.netty.handler.logging.MessageLoggingHandler
 

G

getAllIdleTimeInMillis() - Method in class io.netty.handler.timeout.IdleStateHandler
Return the allIdleTime that was given when instance this class in milliseconds.
getCloseNotifyTimeoutMillis() - Method in class io.netty.handler.ssl.SslHandler
 
getHandshakeTimeoutMillis() - Method in class io.netty.handler.ssl.SslHandler
 
getReaderIdleTimeInMillis() - Method in class io.netty.handler.timeout.IdleStateHandler
Return the readerIdleTime that was given when instance this class in milliseconds.
getWriterIdleTimeInMillis() - Method in class io.netty.handler.timeout.IdleStateHandler
Return the writerIdleTime that was given when instance this class in milliseconds.
GlobalTrafficShapingHandler - Class in io.netty.handler.traffic
This implementation of the AbstractTrafficShapingHandler is for global traffic shaping, that is to say a global limitation of the bandwidth, whatever the number of opened channels.
GlobalTrafficShapingHandler(ScheduledExecutorService, long, long, long) - Constructor for class io.netty.handler.traffic.GlobalTrafficShapingHandler
Create a new instance
GlobalTrafficShapingHandler(ScheduledExecutorService, long, long) - Constructor for class io.netty.handler.traffic.GlobalTrafficShapingHandler
Create a new instance
GlobalTrafficShapingHandler(ScheduledExecutorService, long) - Constructor for class io.netty.handler.traffic.GlobalTrafficShapingHandler
Create a new instance
GlobalTrafficShapingHandler(EventExecutor) - Constructor for class io.netty.handler.traffic.GlobalTrafficShapingHandler
Create a new instance

H

handlerAdded(ChannelHandlerContext) - Method in class io.netty.handler.ssl.SslHandler
 
handlerAdded(ChannelHandlerContext) - Method in class io.netty.handler.stream.ChunkedWriteHandler
 
handlerAdded(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
handlerAdded(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
handlerAdded(ChannelHandlerContext) - Method in class io.netty.handler.traffic.ChannelTrafficShapingHandler
 
handlerRemoved(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
handlerRemoved(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
handlerRemoved(ChannelHandlerContext) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
handlerRemoved0(ChannelHandlerContext) - Method in class io.netty.handler.ssl.SslHandler
 
handshakeFuture() - Method in class io.netty.handler.ssl.SslHandler
Returns a Future that will get notified once the handshake completes.

I

IdleState - Enum in io.netty.handler.timeout
An Enum that represents the idle state of a Channel.
IdleStateEvent - Class in io.netty.handler.timeout
A user event triggered by IdleStateHandler when a Channel is idle.
IdleStateHandler - Class in io.netty.handler.timeout
Triggers an IdleStateEvent when a Channel has not performed read, write, or both operation for a while.
IdleStateHandler(int, int, int) - Constructor for class io.netty.handler.timeout.IdleStateHandler
Creates a new instance firing IdleStateEvents.
IdleStateHandler(long, long, long, TimeUnit) - Constructor for class io.netty.handler.timeout.IdleStateHandler
Creates a new instance firing IdleStateEvents.
INSTANCE - Static variable in exception io.netty.handler.timeout.ReadTimeoutException
 
INSTANCE - Static variable in exception io.netty.handler.timeout.WriteTimeoutException
 
internalLevel - Variable in class io.netty.handler.logging.LoggingHandler
 
io.netty.handler.logging - package io.netty.handler.logging
Logs a io.netty.channel.ChannelEvent for debugging purpose.
io.netty.handler.ssl - package io.netty.handler.ssl
SSL · TLS implementation based on SSLEngine
io.netty.handler.stream - package io.netty.handler.stream
Writes very large data stream asynchronously neither spending a lot of memory nor getting OutOfMemoryError.
io.netty.handler.timeout - package io.netty.handler.timeout
Adds support for read and write timeout and idle connection notification using a Timer.
io.netty.handler.traffic - package io.netty.handler.traffic
Implementation of a Traffic Shaping Handler and Dynamic Statistics.
isEncrypted(ByteBuf) - Static method in class io.netty.handler.ssl.SslHandler
Returns true if the given ByteBuf is encrypted.
isEndOfInput() - Method in class io.netty.handler.stream.ChunkedFile
 
isEndOfInput() - Method in interface io.netty.handler.stream.ChunkedInput
Return true if and only if there is no data left in the stream and the stream has reached at its end.
isEndOfInput() - Method in class io.netty.handler.stream.ChunkedNioFile
 
isEndOfInput() - Method in class io.netty.handler.stream.ChunkedNioStream
 
isEndOfInput() - Method in class io.netty.handler.stream.ChunkedStream
 
isFirst() - Method in class io.netty.handler.timeout.IdleStateEvent
Returns true if this was the first event for the IdleState
isSuccess() - Method in class io.netty.handler.ssl.SslHandshakeCompletionEvent
Return true if the handshake was successful

L

lastCumulativeTime() - Method in class io.netty.handler.traffic.TrafficCounter
 
lastReadBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 
lastReadThroughput() - Method in class io.netty.handler.traffic.TrafficCounter
 
lastTime() - Method in class io.netty.handler.traffic.TrafficCounter
 
lastWriteThroughput() - Method in class io.netty.handler.traffic.TrafficCounter
 
lastWrittenBytes() - Method in class io.netty.handler.traffic.TrafficCounter
 
level() - Method in class io.netty.handler.logging.LoggingHandler
Returns the LogLevel that this handler uses to log
logger - Variable in class io.netty.handler.logging.LoggingHandler
 
LoggingHandler - Class in io.netty.handler.logging
A ChannelHandler that logs all events using a logging framework.
LoggingHandler() - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance whose logger name is the fully qualified class name of the instance with hex dump enabled.
LoggingHandler(LogLevel) - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance whose logger name is the fully qualified class name of the instance.
LoggingHandler(Class<?>) - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance with the specified logger name and with hex dump enabled.
LoggingHandler(Class<?>, LogLevel) - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance with the specified logger name.
LoggingHandler(String) - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance with the specified logger name.
LoggingHandler(String, LogLevel) - Constructor for class io.netty.handler.logging.LoggingHandler
Creates a new instance with the specified logger name.
LogLevel - Enum in io.netty.handler.logging
 

M

MessageLoggingHandler - Class in io.netty.handler.logging
 
MessageLoggingHandler() - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
MessageLoggingHandler(Class<?>, LogLevel) - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
MessageLoggingHandler(Class<?>) - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
MessageLoggingHandler(LogLevel) - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
MessageLoggingHandler(String, LogLevel) - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
MessageLoggingHandler(String) - Constructor for class io.netty.handler.logging.MessageLoggingHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.logging.ByteLoggingHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.logging.LoggingHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.logging.MessageLoggingHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.timeout.IdleStateHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
messageReceived(ChannelHandlerContext, MessageList<Object>) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 

N

name() - Method in class io.netty.handler.traffic.TrafficCounter
 
NotSslRecordException - Exception in io.netty.handler.ssl
Special SSLException which will get thrown if a packet is received that not looks like a TLS/SSL record.
NotSslRecordException() - Constructor for exception io.netty.handler.ssl.NotSslRecordException
 
NotSslRecordException(String) - Constructor for exception io.netty.handler.ssl.NotSslRecordException
 
NotSslRecordException(Throwable) - Constructor for exception io.netty.handler.ssl.NotSslRecordException
 
NotSslRecordException(String, Throwable) - Constructor for exception io.netty.handler.ssl.NotSslRecordException
 

R

read(ChannelHandlerContext) - Method in class io.netty.handler.ssl.SslHandler
 
read(ChannelHandlerContext) - Method in class io.netty.handler.stream.ChunkedWriteHandler
 
read(ChannelHandlerContext) - Method in class io.netty.handler.timeout.IdleStateHandler
 
read(ChannelHandlerContext) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
readChunk(ByteBuf) - Method in class io.netty.handler.stream.ChunkedFile
 
readChunk(B) - Method in interface io.netty.handler.stream.ChunkedInput
Fetches a chunked data from the stream.
readChunk(ByteBuf) - Method in class io.netty.handler.stream.ChunkedNioFile
 
readChunk(ByteBuf) - Method in class io.netty.handler.stream.ChunkedNioStream
 
readChunk(ByteBuf) - Method in class io.netty.handler.stream.ChunkedStream
 
readChunk(ChannelHandlerContext, ChunkedInput<?>, MessageList<Object>) - Method in class io.netty.handler.stream.ChunkedWriteHandler
Read the next ChunkedInput and transfer it the the outbound buffer.
READER_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 
readTimedOut(ChannelHandlerContext) - Method in class io.netty.handler.timeout.ReadTimeoutHandler
 
ReadTimeoutException - Exception in io.netty.handler.timeout
A TimeoutException raised by ReadTimeoutHandler when no data was read within a certain period of time.
ReadTimeoutHandler - Class in io.netty.handler.timeout
Raises a ReadTimeoutException when no data was read within a certain period of time.
ReadTimeoutHandler(int) - Constructor for class io.netty.handler.timeout.ReadTimeoutHandler
Creates a new instance.
ReadTimeoutHandler(long, TimeUnit) - Constructor for class io.netty.handler.timeout.ReadTimeoutHandler
Creates a new instance.
release() - Method in class io.netty.handler.traffic.GlobalTrafficShapingHandler
Release all internal resources of this instance
resetCumulativeTime() - Method in class io.netty.handler.traffic.TrafficCounter
Reset both read and written cumulative bytes counters and the associated time.
resumeTransfer() - Method in class io.netty.handler.stream.ChunkedWriteHandler
Continues to fetch the chunks from the input.

S

setCloseNotifyTimeout(long, TimeUnit) - Method in class io.netty.handler.ssl.SslHandler
 
setCloseNotifyTimeoutMillis(long) - Method in class io.netty.handler.ssl.SslHandler
 
setHandshakeTimeout(long, TimeUnit) - Method in class io.netty.handler.ssl.SslHandler
 
setHandshakeTimeoutMillis(long) - Method in class io.netty.handler.ssl.SslHandler
 
sslCloseFuture() - Method in class io.netty.handler.ssl.SslHandler
Return the ChannelFuture that will get notified if the inbound of the SSLEngine will get closed.
SslHandler - Class in io.netty.handler.ssl
Adds SSL · TLS and StartTLS support to a Channel.
SslHandler(SSLEngine) - Constructor for class io.netty.handler.ssl.SslHandler
Creates a new instance.
SslHandler(SSLEngine, boolean) - Constructor for class io.netty.handler.ssl.SslHandler
Creates a new instance.
SslHandler(SSLEngine, Executor) - Constructor for class io.netty.handler.ssl.SslHandler
Creates a new instance.
SslHandler(SSLEngine, boolean, Executor) - Constructor for class io.netty.handler.ssl.SslHandler
Creates a new instance.
SslHandshakeCompletionEvent - Class in io.netty.handler.ssl
Event that is fired once the SSL handshake is complete, which may be because it was successful or there was an error.
SslHandshakeCompletionEvent(Throwable) - Constructor for class io.netty.handler.ssl.SslHandshakeCompletionEvent
Creates a new event that indicates an unsuccessful handshake.
start() - Method in class io.netty.handler.traffic.TrafficCounter
Start the monitoring process
startOffset() - Method in class io.netty.handler.stream.ChunkedFile
Returns the offset in the file where the transfer began.
startOffset() - Method in class io.netty.handler.stream.ChunkedNioFile
Returns the offset in the file where the transfer began.
state() - Method in class io.netty.handler.timeout.IdleStateEvent
Returns the idle state.
stop() - Method in class io.netty.handler.traffic.TrafficCounter
Stop the monitoring process
SUCCESS - Static variable in class io.netty.handler.ssl.SslHandshakeCompletionEvent
 

T

TimeoutException - Exception in io.netty.handler.timeout
A TimeoutException when no data was either read or written within a certain period of time.
toString() - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
toString() - Method in class io.netty.handler.traffic.TrafficCounter
String information
trafficCounter - Variable in class io.netty.handler.traffic.AbstractTrafficShapingHandler
Traffic Counter
trafficCounter() - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
TrafficCounter - Class in io.netty.handler.traffic
TrafficCounter is associated with AbstractTrafficShapingHandler.
TrafficCounter(AbstractTrafficShapingHandler, ScheduledExecutorService, String, long) - Constructor for class io.netty.handler.traffic.TrafficCounter
Constructor with the AbstractTrafficShapingHandler that hosts it, the Timer to use, its name, the checkInterval between two computations in millisecond
transferredBytes() - Method in class io.netty.handler.stream.ChunkedNioStream
Returns the number of transferred bytes.
transferredBytes() - Method in class io.netty.handler.stream.ChunkedStream
Returns the number of transferred bytes.

U

userEventTriggered(ChannelHandlerContext, Object) - Method in class io.netty.handler.logging.LoggingHandler
 

V

valueOf(String) - Static method in enum io.netty.handler.logging.LogLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum io.netty.handler.timeout.IdleState
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.netty.handler.logging.LogLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum io.netty.handler.timeout.IdleState
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.logging.ByteLoggingHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.logging.LoggingHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.logging.MessageLoggingHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.ssl.SslHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.stream.ChunkedWriteHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.timeout.IdleStateHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.timeout.WriteTimeoutHandler
 
write(ChannelHandlerContext, MessageList<Object>, ChannelPromise) - Method in class io.netty.handler.traffic.AbstractTrafficShapingHandler
 
WRITER_IDLE_STATE_EVENT - Static variable in class io.netty.handler.timeout.IdleStateEvent
 
writeTimedOut(ChannelHandlerContext) - Method in class io.netty.handler.timeout.WriteTimeoutHandler
 
WriteTimeoutException - Exception in io.netty.handler.timeout
A TimeoutException raised by WriteTimeoutHandler when no data was written within a certain period of time.
WriteTimeoutHandler - Class in io.netty.handler.timeout
Raises a WriteTimeoutException when no data was written within a certain period of time.
WriteTimeoutHandler(int) - Constructor for class io.netty.handler.timeout.WriteTimeoutHandler
Creates a new instance.
WriteTimeoutHandler(long, TimeUnit) - Constructor for class io.netty.handler.timeout.WriteTimeoutHandler
Creates a new instance.
A B C D E F G H I L M N R S T U V W 

Copyright © 2008-2013 The Netty Project. All Rights Reserved.