Package org.jboss.netty.handler.ssl
Class SslHandler.ClosingChannelFutureListener
- java.lang.Object
-
- org.jboss.netty.handler.ssl.SslHandler.ClosingChannelFutureListener
-
- All Implemented Interfaces:
java.util.EventListener
,ChannelFutureListener
- Enclosing class:
- SslHandler
private static final class SslHandler.ClosingChannelFutureListener extends java.lang.Object implements ChannelFutureListener
-
-
Field Summary
Fields Modifier and Type Field Description private ChannelHandlerContext
context
private ChannelStateEvent
e
-
Fields inherited from interface org.jboss.netty.channel.ChannelFutureListener
CLOSE, CLOSE_ON_FAILURE
-
-
Constructor Summary
Constructors Constructor Description ClosingChannelFutureListener(ChannelHandlerContext context, ChannelStateEvent e)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
operationComplete(ChannelFuture closeNotifyFuture)
Invoked when the I/O operation associated with theChannelFuture
has been completed.
-
-
-
Field Detail
-
context
private final ChannelHandlerContext context
-
e
private final ChannelStateEvent e
-
-
Constructor Detail
-
ClosingChannelFutureListener
ClosingChannelFutureListener(ChannelHandlerContext context, ChannelStateEvent e)
-
-
Method Detail
-
operationComplete
public void operationComplete(ChannelFuture closeNotifyFuture) throws java.lang.Exception
Description copied from interface:ChannelFutureListener
Invoked when the I/O operation associated with theChannelFuture
has been completed.- Specified by:
operationComplete
in interfaceChannelFutureListener
- Parameters:
closeNotifyFuture
- the sourceChannelFuture
which called this callback- Throws:
java.lang.Exception
-
-