Package org.jboss.netty.handler.ssl
Class SslHandler.SSLEngineInboundCloseFuture
java.lang.Object
org.jboss.netty.channel.DefaultChannelFuture
org.jboss.netty.handler.ssl.SslHandler.SSLEngineInboundCloseFuture
- All Implemented Interfaces:
ChannelFuture
- Enclosing class:
- SslHandler
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a channel where the I/O operation associated with this future takes place.(package private) void
boolean
setFailure
(Throwable cause) Marks this future as a failure and notifies all listeners.boolean
Marks this future as a success and notifies all listeners.Methods inherited from class org.jboss.netty.channel.DefaultChannelFuture
addListener, await, await, await, awaitUninterruptibly, awaitUninterruptibly, awaitUninterruptibly, cancel, getCause, isCancelled, isDone, isSuccess, isUseDeadLockChecker, removeListener, setProgress, setUseDeadLockChecker, sync, syncUninterruptibly
-
Constructor Details
-
SSLEngineInboundCloseFuture
SSLEngineInboundCloseFuture()
-
-
Method Details
-
setClosed
void setClosed() -
getChannel
Description copied from interface:ChannelFuture
Returns a channel where the I/O operation associated with this future takes place.- Specified by:
getChannel
in interfaceChannelFuture
- Overrides:
getChannel
in classDefaultChannelFuture
-
setSuccess
public boolean setSuccess()Description copied from interface:ChannelFuture
Marks this future as a success and notifies all listeners.- Specified by:
setSuccess
in interfaceChannelFuture
- Overrides:
setSuccess
in classDefaultChannelFuture
- Returns:
true
if and only if successfully marked this future as a success. Otherwisefalse
because this future is already marked as either a success or a failure.
-
setFailure
Description copied from interface:ChannelFuture
Marks this future as a failure and notifies all listeners.- Specified by:
setFailure
in interfaceChannelFuture
- Overrides:
setFailure
in classDefaultChannelFuture
- Returns:
true
if and only if successfully marked this future as a failure. Otherwisefalse
because this future is already marked as either a success or a failure.
-