Rename class to better reflect its usage. See #480

This commit is contained in:
norman 2012-07-30 13:57:33 +02:00
parent 3070247ca7
commit d2fa983d32

View File

@ -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;
}