Uses of Class
org.eclipse.jetty.http2.frames.Frame
-
Packages that use Frame Package Description org.eclipse.jetty.http2 org.eclipse.jetty.http2.frames org.eclipse.jetty.http2.generator org.eclipse.jetty.http2.server -
-
Uses of Frame in org.eclipse.jetty.http2
Fields in org.eclipse.jetty.http2 declared as Frame Modifier and Type Field Description protected Frame
HTTP2Flusher.Entry. frame
Methods in org.eclipse.jetty.http2 with parameters of type Frame Modifier and Type Method Description void
HTTP2Session. onFrame(Frame frame)
void
ISession. onFrame(Frame frame)
Callback method invoked during an HTTP/1.1 to HTTP/2 upgrade requests to process the given synthetic frame.void
HTTP2Stream. process(Frame frame, Callback callback)
void
IStream. process(Frame frame, Callback callback)
Processes the givenframe
, belonging to this stream.Method parameters in org.eclipse.jetty.http2 with type arguments of type Frame Modifier and Type Method Description void
HTTP2Session. frames(IStream stream, java.util.List<? extends Frame> frames, Callback callback)
void
ISession. frames(IStream stream, java.util.List<? extends Frame> frames, Callback callback)
Enqueues the given frames to be written to the connection.Constructors in org.eclipse.jetty.http2 with parameters of type Frame Constructor Description Entry(Frame frame, IStream stream, Callback callback)
-
Uses of Frame in org.eclipse.jetty.http2.frames
Subclasses of Frame in org.eclipse.jetty.http2.frames Modifier and Type Class Description class
ContinuationFrame
class
DataFrame
class
DisconnectFrame
class
FailureFrame
class
GoAwayFrame
class
HeadersFrame
class
PingFrame
class
PrefaceFrame
class
PriorityFrame
class
PushPromiseFrame
class
ResetFrame
class
SettingsFrame
class
StreamFrame
class
UnknownFrame
class
WindowUpdateFrame
Fields in org.eclipse.jetty.http2.frames declared as Frame Modifier and Type Field Description static Frame[]
Frame. EMPTY_ARRAY
-
Uses of Frame in org.eclipse.jetty.http2.generator
Methods in org.eclipse.jetty.http2.generator with parameters of type Frame Modifier and Type Method Description int
Generator. control(ByteBufferPool.Lease lease, Frame frame)
abstract int
FrameGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
GoAwayGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
HeadersGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
NoOpGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
PingGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
PrefaceGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
PriorityGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
PushPromiseGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
ResetGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
SettingsGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
int
WindowUpdateGenerator. generate(ByteBufferPool.Lease lease, Frame frame)
-
Uses of Frame in org.eclipse.jetty.http2.server
Methods in org.eclipse.jetty.http2.server with parameters of type Frame Modifier and Type Method Description void
HTTP2ServerSession. onFrame(Frame frame)
-