public interface SpdySynStreamFrame extends SpdyHeaderBlock, SpdyControlFrame
| Modifier and Type | Method and Description |
|---|---|
int |
getAssociatedToStreamId()
Returns the Associated-To-Stream-ID of this frame.
|
byte |
getPriority()
Returns the priority of the stream.
|
int |
getStreamId()
Returns the Stream-ID of this frame.
|
boolean |
isLast()
Returns
true if this frame is the last frame to be transmitted
on the stream. |
boolean |
isUnidirectional()
Returns
true if the stream created with this frame is to be
considered half-closed to the receiver. |
void |
setAssociatedToStreamId(int associatedToStreamId)
Sets the Associated-To-Stream-ID of this frame.
|
void |
setLast(boolean last)
Sets if this frame is the last frame to be transmitted on the stream.
|
void |
setPriority(byte priority)
Sets the priority of the stream.
|
void |
setStreamId(int streamId)
Sets the Stream-ID of this frame.
|
void |
setUnidirectional(boolean unidirectional)
Sets if the stream created with this frame is to be considered
half-closed to the receiver.
|
addHeader, clearHeaders, containsHeader, getHeader, getHeaderNames, getHeaders, getHeaders, isInvalid, removeHeader, setHeader, setHeader, setInvalidint getStreamId()
void setStreamId(int streamId)
int getAssociatedToStreamId()
void setAssociatedToStreamId(int associatedToStreamId)
byte getPriority()
void setPriority(byte priority)
boolean isLast()
true if this frame is the last frame to be transmitted
on the stream.void setLast(boolean last)
boolean isUnidirectional()
true if the stream created with this frame is to be
considered half-closed to the receiver.void setUnidirectional(boolean unidirectional)
Copyright © 2008-2012 The Netty Project. All Rights Reserved.