
public class DefaultWriteCompletionEvent extends Object implements WriteCompletionEvent
WriteCompletionEvent implementation.| Constructor and Description | 
|---|
DefaultWriteCompletionEvent(Channel channel,
                           long writtenAmount)
Creates a new instance. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Channel | 
getChannel()
Returns the  
Channel which is associated with this event. | 
ChannelFuture | 
getFuture()
Returns the  
ChannelFuture which is associated with this event. | 
long | 
getWrittenAmount()
Returns the amount of data written. 
 | 
String | 
toString()  | 
public DefaultWriteCompletionEvent(Channel channel, long writtenAmount)
public Channel getChannel()
ChannelEventChannel which is associated with this event.getChannel in interface ChannelEventpublic ChannelFuture getFuture()
ChannelEventChannelFuture which is associated with this event.
 If this event is an upstream event, this method will always return a
 SucceededChannelFuture because the event has occurred already.
 If this event is a downstream event (i.e. I/O request), the returned
 future will be notified when the I/O request succeeds or fails.getFuture in interface ChannelEventpublic long getWrittenAmount()
WriteCompletionEventgetWrittenAmount in interface WriteCompletionEventCopyright © 2008-2014 The Netty Project. All Rights Reserved.