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

private final class SslHandler.SSLEngineInboundCloseFuture extends DefaultChannelFuture
  • Constructor Details

    • SSLEngineInboundCloseFuture

      SSLEngineInboundCloseFuture()
  • Method Details

    • setClosed

      void setClosed()
    • getChannel

      public Channel getChannel()
      Description copied from interface: ChannelFuture
      Returns a channel where the I/O operation associated with this future takes place.
      Specified by:
      getChannel in interface ChannelFuture
      Overrides:
      getChannel in class DefaultChannelFuture
    • setSuccess

      public boolean setSuccess()
      Description copied from interface: ChannelFuture
      Marks this future as a success and notifies all listeners.
      Specified by:
      setSuccess in interface ChannelFuture
      Overrides:
      setSuccess in class DefaultChannelFuture
      Returns:
      true if and only if successfully marked this future as a success. Otherwise false because this future is already marked as either a success or a failure.
    • setFailure

      public boolean setFailure(Throwable cause)
      Description copied from interface: ChannelFuture
      Marks this future as a failure and notifies all listeners.
      Specified by:
      setFailure in interface ChannelFuture
      Overrides:
      setFailure in class DefaultChannelFuture
      Returns:
      true if and only if successfully marked this future as a failure. Otherwise false because this future is already marked as either a success or a failure.