Class ByteAccumulator
- java.lang.Object
-
- org.eclipse.jetty.websocket.common.extensions.compress.ByteAccumulator
-
- All Implemented Interfaces:
java.lang.AutoCloseable
@Deprecated public class ByteAccumulator extends java.lang.Object implements java.lang.AutoCloseable
Deprecated.useByteBufferAccumulator
instead.
-
-
Field Summary
Fields Modifier and Type Field Description private org.eclipse.jetty.io.ByteBufferAccumulator
accumulator
Deprecated.private int
length
Deprecated.private int
maxSize
Deprecated.private static int
MIN_SPACE
Deprecated.
-
Constructor Summary
Constructors Constructor Description ByteAccumulator(int maxOverallBufferSize)
Deprecated.ByteAccumulator(int maxOverallBufferSize, org.eclipse.jetty.io.ByteBufferPool byteBufferPool)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addLength(int read)
Deprecated.void
close()
Deprecated.void
copyChunk(byte[] buf, int offset, int length)
Deprecated.void
copyChunk(java.nio.ByteBuffer buffer)
Deprecated.java.nio.ByteBuffer
ensureBuffer(int minAllocationSize)
Deprecated.int
getLength()
Deprecated.void
transferTo(java.nio.ByteBuffer buffer)
Deprecated.
-
-
-
Field Detail
-
MIN_SPACE
private static final int MIN_SPACE
Deprecated.- See Also:
- Constant Field Values
-
accumulator
private final org.eclipse.jetty.io.ByteBufferAccumulator accumulator
Deprecated.
-
maxSize
private final int maxSize
Deprecated.
-
length
private int length
Deprecated.
-
-
Method Detail
-
getLength
public int getLength()
Deprecated.
-
ensureBuffer
public java.nio.ByteBuffer ensureBuffer(int minAllocationSize)
Deprecated.
-
addLength
public void addLength(int read)
Deprecated.
-
copyChunk
public void copyChunk(byte[] buf, int offset, int length)
Deprecated.
-
copyChunk
public void copyChunk(java.nio.ByteBuffer buffer)
Deprecated.
-
transferTo
public void transferTo(java.nio.ByteBuffer buffer)
Deprecated.
-
close
public void close()
Deprecated.- Specified by:
close
in interfacejava.lang.AutoCloseable
-
-