Package | Description |
---|---|
org.eclipse.jetty.spdy | |
org.eclipse.jetty.spdy.api | |
org.eclipse.jetty.spdy.client.http | |
org.eclipse.jetty.spdy.server.http | |
org.eclipse.jetty.spdy.server.proxy |
Modifier and Type | Interface and Description |
---|---|
interface |
IStream
The internal interface that represents a stream.
|
Modifier and Type | Class and Description |
---|---|
class |
StandardStream |
Modifier and Type | Method and Description |
---|---|
Stream |
StandardStream.push(PushInfo pushInfo) |
Stream |
StandardSession.syn(SynInfo synInfo,
StreamFrameListener listener) |
Modifier and Type | Method and Description |
---|---|
Set<Stream> |
StandardStream.getPushedStreams() |
Set<Stream> |
StandardSession.getStreams() |
Modifier and Type | Method and Description |
---|---|
void |
Flusher.removeFrameBytesFromQueue(Stream stream) |
Modifier and Type | Method and Description |
---|---|
void |
StandardStream.push(PushInfo pushInfo,
Promise<Stream> promise) |
void |
StandardSession.syn(SynInfo synInfo,
StreamFrameListener listener,
Promise<Stream> promise) |
Constructor and Description |
---|
StandardStream(int id,
byte priority,
ISession session,
IStream associatedStream,
Scheduler scheduler,
Promise<Stream> promise) |
Modifier and Type | Method and Description |
---|---|
Stream |
Stream.getAssociatedStream() |
Stream |
Session.getStream(int streamId) |
Stream |
Stream.push(PushInfo pushInfo)
Initiate a unidirectional spdy pushstream associated to this stream asynchronously
|
Stream |
Session.syn(SynInfo synInfo,
StreamFrameListener listener)
Sends a SYN_FRAME to create a new
SPDY stream . |
Modifier and Type | Method and Description |
---|---|
Set<Stream> |
Stream.getPushedStreams() |
Set<Stream> |
Session.getStreams() |
Modifier and Type | Method and Description |
---|---|
void |
StreamFrameListener.onData(Stream stream,
DataInfo dataInfo)
Callback invoked when data bytes are received on a stream.
|
void |
StreamFrameListener.Adapter.onData(Stream stream,
DataInfo dataInfo) |
void |
StreamFrameListener.onFailure(Stream stream,
Throwable x)
Callback invoked on errors.
|
void |
StreamFrameListener.Adapter.onFailure(Stream stream,
Throwable x) |
void |
StreamFrameListener.onHeaders(Stream stream,
HeadersInfo headersInfo)
Callback invoked when headers are received on a stream.
|
void |
StreamFrameListener.Adapter.onHeaders(Stream stream,
HeadersInfo headersInfo) |
StreamFrameListener |
StreamFrameListener.onPush(Stream stream,
PushInfo pushInfo)
Callback invoked when a push syn has been received on a stream.
|
StreamFrameListener |
StreamFrameListener.Adapter.onPush(Stream stream,
PushInfo pushInfo) |
void |
StreamFrameListener.onReply(Stream stream,
ReplyInfo replyInfo)
Callback invoked when a reply to a stream creation has been received.
|
void |
StreamFrameListener.Adapter.onReply(Stream stream,
ReplyInfo replyInfo) |
void |
Session.StreamListener.onStreamClosed(Stream stream)
Callback invoked when a SPDY stream is closed.
|
void |
Session.StreamListener.Adapter.onStreamClosed(Stream stream) |
void |
Session.StreamListener.onStreamCreated(Stream stream)
Callback invoked when a new SPDY stream is created.
|
void |
Session.StreamListener.Adapter.onStreamCreated(Stream stream) |
StreamFrameListener |
SessionFrameListener.onSyn(Stream stream,
SynInfo synInfo)
Callback invoked when a request to create a stream has been received.
|
StreamFrameListener |
SessionFrameListener.Adapter.onSyn(Stream stream,
SynInfo synInfo) |
Modifier and Type | Method and Description |
---|---|
void |
Stream.push(PushInfo pushInfo,
Promise<Stream> promise)
Initiate a unidirectional spdy pushstream associated to this stream asynchronously
|
void |
Session.syn(SynInfo synInfo,
StreamFrameListener listener,
Promise<Stream> promise)
Sends asynchronously a SYN_FRAME to create a new
SPDY stream . |
Modifier and Type | Method and Description |
---|---|
void |
HttpReceiverOverSPDY.onData(Stream stream,
DataInfo dataInfo) |
void |
HttpReceiverOverSPDY.onFailure(Stream stream,
Throwable x) |
void |
HttpReceiverOverSPDY.onHeaders(Stream stream,
HeadersInfo headersInfo) |
StreamFrameListener |
HttpReceiverOverSPDY.onPush(Stream stream,
PushInfo pushInfo) |
void |
HttpReceiverOverSPDY.onReply(Stream stream,
ReplyInfo replyInfo) |
Modifier and Type | Method and Description |
---|---|
protected Stream |
HttpTransportOverSPDY.getStream() |
Modifier and Type | Method and Description |
---|---|
Set<String> |
ReferrerPushStrategy.apply(Stream stream,
Fields requestHeaders,
Fields responseHeaders) |
Set<String> |
PushStrategy.apply(Stream stream,
Fields requestHeaders,
Fields responseHeaders)
Applies the SPDY push logic for the primary resource.
|
Set<String> |
PushStrategy.None.apply(Stream stream,
Fields requestHeaders,
Fields responseHeaders) |
Constructor and Description |
---|
HttpChannelOverSPDY(Connector connector,
HttpConfiguration configuration,
EndPoint endPoint,
HttpTransport transport,
HttpInputOverSPDY input,
Stream stream) |
HttpTransportOverSPDY(Connector connector,
HttpConfiguration configuration,
EndPoint endPoint,
PushStrategy pushStrategy,
Stream stream,
Fields requestHeaders) |
Modifier and Type | Method and Description |
---|---|
protected void |
ProxyEngine.addRequestProxyHeaders(Stream stream,
Fields headers) |
protected void |
ProxyEngine.addResponseProxyHeaders(Stream stream,
Fields headers) |
protected void |
ProxyEngine.customizeRequestHeaders(Stream stream,
Fields headers) |
protected void |
ProxyEngine.customizeResponseHeaders(Stream stream,
Fields headers) |
void |
SPDYProxyEngine.onData(Stream clientStream,
DataInfo clientDataInfo) |
void |
SPDYProxyEngine.onFailure(Stream stream,
Throwable x) |
void |
SPDYProxyEngine.onHeaders(Stream stream,
HeadersInfo headersInfo) |
StreamFrameListener |
SPDYProxyEngine.onPush(Stream stream,
PushInfo pushInfo) |
void |
SPDYProxyEngine.onReply(Stream stream,
ReplyInfo replyInfo) |
StreamFrameListener |
ProxyEngineSelector.onSyn(Stream clientStream,
SynInfo clientSynInfo) |
StreamFrameListener |
SPDYProxyEngine.proxy(Stream clientStream,
SynInfo clientSynInfo,
ProxyEngineSelector.ProxyServerInfo proxyServerInfo) |
abstract StreamFrameListener |
ProxyEngine.proxy(Stream clientStream,
SynInfo clientSynInfo,
ProxyEngineSelector.ProxyServerInfo proxyServerInfo) |
StreamFrameListener |
HTTPProxyEngine.proxy(Stream clientStream,
SynInfo clientSynInfo,
ProxyEngineSelector.ProxyServerInfo proxyServerInfo) |
Copyright © 1995-2015 Webtide. All Rights Reserved.