public interface SpdySynStreamFrame extends SpdyHeaderBlock
Modifier and Type | Method and Description |
---|---|
int |
getAssociatedToStreamId()
Returns the Associated-To-Stream-ID of this frame.
|
int |
getAssociatedToStreamID()
Deprecated.
Use
getAssociatedToStreamId() instead. |
byte |
getPriority()
Returns the priority of the stream.
|
int |
getStreamId()
Returns the Stream-ID of this frame.
|
int |
getStreamID()
Deprecated.
Use
getStreamId() instead. |
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 |
setAssociatedToStreamID(int associatedToStreamId)
Deprecated.
Use
setAssociatedToStreamId(int) instead. |
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 |
setStreamID(int streamID)
Deprecated.
Use
setStreamId(int) instead. |
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, setInvalid
@Deprecated int getStreamID()
getStreamId()
instead.int getStreamId()
@Deprecated void setStreamID(int streamID)
setStreamId(int)
instead.void setStreamId(int streamId)
@Deprecated int getAssociatedToStreamID()
getAssociatedToStreamId()
instead.int getAssociatedToStreamId()
@Deprecated void setAssociatedToStreamID(int associatedToStreamId)
setAssociatedToStreamId(int)
instead.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-2014 The Netty Project. All Rights Reserved.