Uses of Class
jdk.incubator.http.internal.common.ByteBufferReference
-
Packages that use ByteBufferReference Package Description jdk.incubator.http.internal.common jdk.incubator.http.internal.frame -
-
Uses of ByteBufferReference in jdk.incubator.http.internal.common
Methods in jdk.incubator.http.internal.common that return ByteBufferReference Modifier and Type Method Description ByteBufferReference
ByteBufferPool. get(int size)
static ByteBufferReference
ByteBufferReference. of(java.nio.ByteBuffer buffer)
static ByteBufferReference
ByteBufferReference. of(java.nio.ByteBuffer buffer, ByteBufferPool pool)
static ByteBufferReference[]
ByteBufferReference. toReferences(java.nio.ByteBuffer... buffers)
Methods in jdk.incubator.http.internal.common with parameters of type ByteBufferReference Modifier and Type Method Description static void
ByteBufferReference. clear(ByteBufferReference[] refs)
void
AsyncWriteQueue. put(ByteBufferReference[] e)
void
AsyncWriteQueue. putFirst(ByteBufferReference[] e)
static int
Utils. remaining(ByteBufferReference[] refs)
void
AsyncWriteQueue. setDelayed(ByteBufferReference[] delayedElement)
static java.nio.ByteBuffer[]
ByteBufferReference. toBuffers(ByteBufferReference... refs)
-
Uses of ByteBufferReference in jdk.incubator.http.internal.frame
Methods in jdk.incubator.http.internal.frame that return ByteBufferReference Modifier and Type Method Description ByteBufferReference
FramesEncoder. encodeConnectionPreface(byte[] preface, SettingsFrame frame)
ByteBufferReference[]
FramesEncoder. encodeFrame(Http2Frame frame)
ByteBufferReference[]
FramesEncoder. encodeFrames(java.util.List<HeaderFrame> frames)
ByteBufferReference[]
DataFrame. getData()
ByteBufferReference[]
HeaderFrame. getHeaderBlock()
ByteBufferReference
FramesEncoder. getPadding(int length)
Methods in jdk.incubator.http.internal.frame with parameters of type ByteBufferReference Modifier and Type Method Description void
FramesDecoder. decode(ByteBufferReference buffer)
put next buffer into queue, if frame decoding is possible - decode all buffers and invoke FrameProcessorConstructors in jdk.incubator.http.internal.frame with parameters of type ByteBufferReference Constructor Description ContinuationFrame(int streamid, int flags, ByteBufferReference[] headerBlocks)
ContinuationFrame(int streamid, ByteBufferReference headersBlock)
DataFrame(int streamid, int flags, ByteBufferReference data)
DataFrame(int streamid, int flags, ByteBufferReference[] data)
DataFrame(int streamid, int flags, ByteBufferReference[] data, int padLength)
HeaderFrame(int streamid, int flags, ByteBufferReference headerBlock)
HeaderFrame(int streamid, int flags, ByteBufferReference[] headerBlocks)
HeadersFrame(int streamid, int flags, ByteBufferReference headerBlock)
HeadersFrame(int streamid, int flags, ByteBufferReference[] headerBlocks)
HeadersFrame(int streamid, int flags, ByteBufferReference[] headerBlocks, int padLength)
PushPromiseFrame(int streamid, int flags, int promisedStream, ByteBufferReference[] buffers, int padLength)
-