Class SecureChatServerHandler.Greeter
- java.lang.Object
-
- org.jboss.netty.example.securechat.SecureChatServerHandler.Greeter
-
- All Implemented Interfaces:
java.util.EventListener
,ChannelFutureListener
- Enclosing class:
- SecureChatServerHandler
private static final class SecureChatServerHandler.Greeter extends java.lang.Object implements ChannelFutureListener
-
-
Field Summary
Fields Modifier and Type Field Description private SslHandler
sslHandler
-
Fields inherited from interface org.jboss.netty.channel.ChannelFutureListener
CLOSE, CLOSE_ON_FAILURE
-
-
Constructor Summary
Constructors Constructor Description Greeter(SslHandler sslHandler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
operationComplete(ChannelFuture future)
Invoked when the I/O operation associated with theChannelFuture
has been completed.
-
-
-
Field Detail
-
sslHandler
private final SslHandler sslHandler
-
-
Constructor Detail
-
Greeter
Greeter(SslHandler sslHandler)
-
-
Method Detail
-
operationComplete
public void operationComplete(ChannelFuture future) 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:
future
- the sourceChannelFuture
which called this callback- Throws:
java.lang.Exception
-
-