net.gleamynode.netty.channel
Interface ChannelFutureListener

All Superinterfaces:
EventListener

public interface ChannelFutureListener
extends EventListener

Version:
$Rev$, $Date$
Author:
The Netty Project (netty@googlegroups.com), Trustin Lee (trustin@gmail.com)

Field Summary
static ChannelFutureListener CLOSE
          An ChannelFutureListener that closes the Channel which is associated with the specified ChannelFuture.
 
Method Summary
 void operationComplete(ChannelFuture future)
          Invoked when the operation associated with the ChannelFuture has been completed.
 

Field Detail

CLOSE

static final ChannelFutureListener CLOSE
An ChannelFutureListener that closes the Channel which is associated with the specified ChannelFuture.

Method Detail

operationComplete

void operationComplete(ChannelFuture future)
                       throws Exception
Invoked when the operation associated with the ChannelFuture has been completed.

Parameters:
future - The source ChannelFuture which called this callback.
Throws:
Exception


Copyright © 2008-Present Trustin Heuiseung Lee. All Rights Reserved.