public class FixedReceiveBufferSizePredictor extends Object implements ReceiveBufferSizePredictor
ReceiveBufferSizePredictor
that always yields the same buffer
size prediction. This predictor ignores the feed back from the I/O thread.Constructor and Description |
---|
FixedReceiveBufferSizePredictor(int bufferSize)
Creates a new predictor that always returns the same prediction of
the specified buffer size.
|
Modifier and Type | Method and Description |
---|---|
int |
nextReceiveBufferSize()
Predicts the capacity of the
ChannelBuffer for the next
read operation depending on the actual number of read bytes in the
previous read operation. |
void |
previousReceiveBufferSize(int previousReceiveBufferSize)
Updates this predictor by specifying the actual number of read bytes
in the previous read operation.
|
public FixedReceiveBufferSizePredictor(int bufferSize)
public int nextReceiveBufferSize()
ReceiveBufferSizePredictor
ChannelBuffer
for the next
read operation depending on the actual number of read bytes in the
previous read operation.nextReceiveBufferSize
in interface ReceiveBufferSizePredictor
public void previousReceiveBufferSize(int previousReceiveBufferSize)
ReceiveBufferSizePredictor
previousReceiveBufferSize
in interface ReceiveBufferSizePredictor
previousReceiveBufferSize
- the actual number of read bytes in the previous read operationCopyright © 2008-2014 The Netty Project. All Rights Reserved.