Rename class to better reflect its usage. See #480
This commit is contained in:
parent
3070247ca7
commit
d2fa983d32
@ -19,13 +19,13 @@ import java.nio.ByteBuffer;
|
||||
|
||||
import org.jboss.netty.util.internal.ByteBufferUtil;
|
||||
|
||||
final class SocketReceiveBuffer {
|
||||
final class SocketReceiveBufferAllocator {
|
||||
|
||||
private ByteBuffer buf;
|
||||
private int exceedCount;
|
||||
private final int maxExceedCount;
|
||||
|
||||
SocketReceiveBuffer(int maxExceedCount) {
|
||||
SocketReceiveBufferAllocator(int maxExceedCount) {
|
||||
this.maxExceedCount = maxExceedCount;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user