| Constructor and Description |
|---|
StandardStream(int id,
byte priority,
ISession session,
IStream associatedStream) |
| Modifier and Type | Method and Description |
|---|---|
void |
associate(IStream stream)
|
Future<Void> |
data(DataInfo dataInfo)
Sends asynchronously a DATA frame on this stream.
|
void |
data(DataInfo dataInfo,
long timeout,
TimeUnit unit,
Handler<Void> handler)
Sends asynchronously a DATA frame on this stream.
|
void |
disassociate(IStream stream)
remove the given associated
IStream from this stream |
IStream |
getAssociatedStream()
Overrides Stream.getAssociatedStream() to return an instance of IStream instead of Stream
|
Object |
getAttribute(String key) |
int |
getId() |
byte |
getPriority() |
Set<Stream> |
getPushedStreams() |
ISession |
getSession() |
StreamFrameListener |
getStreamFrameListener() |
int |
getWindowSize()
Senders of data frames need to know the current window size
to determine whether they can send more data.
|
Future<Void> |
headers(HeadersInfo headersInfo)
Sends asynchronously a HEADER frame on this stream.
|
void |
headers(HeadersInfo headersInfo,
long timeout,
TimeUnit unit,
Handler<Void> handler)
Sends asynchronously a HEADER frame on this stream.
|
boolean |
isClosed() |
boolean |
isHalfClosed() |
boolean |
isReset() |
boolean |
isUnidirectional() |
void |
process(ControlFrame frame)
Processes the given control frame,
for example by updating the stream's state or by calling listeners.
|
void |
process(DataInfo dataInfo)
Processes the given
dataInfo,
for example by updating the stream's state or by calling listeners. |
Object |
removeAttribute(String key) |
Future<Void> |
reply(ReplyInfo replyInfo)
Sends asynchronously a SYN_REPLY frame in response to a SYN_STREAM frame.
|
void |
reply(ReplyInfo replyInfo,
long timeout,
TimeUnit unit,
Handler<Void> handler)
Sends asynchronously a SYN_REPLY frame in response to a SYN_STREAM frame.
|
void |
setAttribute(String key,
Object value) |
void |
setStreamFrameListener(StreamFrameListener listener) |
Future<Stream> |
syn(SynInfo synInfo)
Initiate a unidirectional spdy pushstream associated to this stream asynchronously
|
void |
syn(SynInfo synInfo,
long timeout,
TimeUnit unit,
Handler<Stream> handler)
Initiate a unidirectional spdy pushstream associated to this stream asynchronously
|
String |
toString() |
void |
updateCloseState(boolean close,
boolean local)
A stream can be open,
half closed or
closed and this method updates the close state
of this stream. |
void |
updateWindowSize(int delta)
Updates the window size for this stream by the given amount,
that can be positive or negative.
|
public IStream getAssociatedStream()
IStreamOverrides Stream.getAssociatedStream() to return an instance of IStream instead of Stream
getAssociatedStream in interface StreamgetAssociatedStream in interface IStreamStream.getAssociatedStream()public Set<Stream> getPushedStreams()
getPushedStreams in interface Streampublic void disassociate(IStream stream)
IStreamremove the given associated IStream from this stream
disassociate in interface IStreamstream - the stream to be removedpublic byte getPriority()
getPriority in interface Streampublic int getWindowSize()
IStreamSenders of data frames need to know the current window size to determine whether they can send more data.
getWindowSize in interface IStreamIStream.updateWindowSize(int)public void updateWindowSize(int delta)
IStreamUpdates the window size for this stream by the given amount, that can be positive or negative.
Senders and recipients of data frames update the window size, respectively, with negative values and positive values.
updateWindowSize in interface IStreamdelta - the signed amount the window size needs to be updatedIStream.getWindowSize()public ISession getSession()
getSession in interface Streampublic Object getAttribute(String key)
getAttribute in interface Streamkey - the attribute keyStream.setAttribute(String, Object)public void setAttribute(String key, Object value)
setAttribute in interface Streamkey - the attribute keyvalue - an arbitrary object to associate with the given key to this streamStream.getAttribute(String),
Stream.removeAttribute(String)public Object removeAttribute(String key)
removeAttribute in interface Streamkey - the attribute keyStream.setAttribute(String, Object)public void setStreamFrameListener(StreamFrameListener listener)
setStreamFrameListener in interface IStreamlistener - the stream frame listener associated to this stream
as returned by SessionFrameListener.onSyn(Stream, SynInfo)public StreamFrameListener getStreamFrameListener()
public void updateCloseState(boolean close,
boolean local)
IStreamA stream can be open, half closed or
closed and this method updates the close state
of this stream.
If the stream is open, calling this method with a value of true puts the stream into half closed state.
If the stream is half closed, calling this method with a value of true puts the stream into closed state.
updateCloseState in interface IStreamclose - whether the close state should be updatedlocal - whether the close is local or remotepublic void process(ControlFrame frame)
IStreamProcesses the given control frame, for example by updating the stream's state or by calling listeners.
process in interface IStreamframe - the control frame to processIStream.process(DataInfo)public void process(DataInfo dataInfo)
IStreamProcesses the given dataInfo,
for example by updating the stream's state or by calling listeners.
process in interface IStreamdataInfo - the DataInfo to processIStream.process(ControlFrame)public Future<Stream> syn(SynInfo synInfo)
StreamInitiate a unidirectional spdy pushstream associated to this stream asynchronously
Callers may use the returned future to get the pushstream once it got created
syn in interface StreamsynInfo - the metadata to send on stream creationStream.syn(SynInfo, long, TimeUnit, Handler)public void syn(SynInfo synInfo, long timeout, TimeUnit unit, Handler<Stream> handler)
StreamInitiate a unidirectional spdy pushstream associated to this stream asynchronously
Callers may pass a non-null completion handler to be notified of when the pushstream has been established.
syn in interface StreamsynInfo - the metadata to send on stream creationtimeout - the operation's timeoutunit - the timeout's unithandler - the completion handler that gets notified once the pushstream is establishedStream.syn(SynInfo)public Future<Void> reply(ReplyInfo replyInfo)
StreamSends asynchronously a SYN_REPLY frame in response to a SYN_STREAM frame.
Callers may use the returned future to wait for the reply to be actually sent.
reply in interface StreamreplyInfo - the metadata to sendStream.reply(ReplyInfo, long, TimeUnit, Handler),
SessionFrameListener.onSyn(Stream, SynInfo)public void reply(ReplyInfo replyInfo, long timeout, TimeUnit unit, Handler<Void> handler)
StreamSends asynchronously a SYN_REPLY frame in response to a SYN_STREAM frame.
Callers may pass a non-null completion handler to be notified of when the reply has been actually sent.
reply in interface StreamreplyInfo - the metadata to sendtimeout - the operation's timeoutunit - the timeout's unithandler - the completion handler that gets notified of reply sentStream.reply(ReplyInfo)public Future<Void> data(DataInfo dataInfo)
StreamSends asynchronously a DATA frame on this stream.
DATA frames should always be sent after a SYN_REPLY frame.
Callers may use the returned future to wait for the data to be actually sent.
data in interface StreamdataInfo - the metadata to sendStream.data(DataInfo, long, TimeUnit, Handler),
Stream.reply(ReplyInfo)public void data(DataInfo dataInfo, long timeout, TimeUnit unit, Handler<Void> handler)
StreamSends asynchronously a DATA frame on this stream.
DATA frames should always be sent after a SYN_REPLY frame.
Callers may pass a non-null completion handler to be notified of when the data has been actually sent.
data in interface StreamdataInfo - the metadata to sendtimeout - the operation's timeoutunit - the timeout's unithandler - the completion handler that gets notified of data sentStream.data(DataInfo)public Future<Void> headers(HeadersInfo headersInfo)
StreamSends asynchronously a HEADER frame on this stream.
HEADERS frames should always be sent after a SYN_REPLY frame.
Callers may use the returned future to wait for the headers to be actually sent.
headers in interface StreamheadersInfo - the metadata to sendStream.headers(HeadersInfo, long, TimeUnit, Handler),
Stream.reply(ReplyInfo)public void headers(HeadersInfo headersInfo, long timeout, TimeUnit unit, Handler<Void> handler)
StreamSends asynchronously a HEADER frame on this stream.
HEADERS frames should always be sent after a SYN_REPLY frame.
Callers may pass a non-null completion handler to be notified of when the headers have been actually sent.
headers in interface StreamheadersInfo - the metadata to sendtimeout - the operation's timeoutunit - the timeout's unithandler - the completion handler that gets notified of headers sentStream.headers(HeadersInfo)public boolean isUnidirectional()
isUnidirectional in interface Streampublic boolean isReset()
public boolean isHalfClosed()
isHalfClosed in interface StreamStream.isClosed()public boolean isClosed()
isClosed in interface StreamStream.isHalfClosed()Copyright © 1995-2013 Mort Bay Consulting. All Rights Reserved.