Package io.netty.handler.codec.stomp
Class DefaultStompHeadersSubframe
- java.lang.Object
-
- io.netty.handler.codec.stomp.DefaultStompHeadersSubframe
-
- All Implemented Interfaces:
io.netty.handler.codec.DecoderResultProvider,StompHeadersSubframe,StompSubframe
- Direct Known Subclasses:
DefaultStompFrame
public class DefaultStompHeadersSubframe extends Object implements StompHeadersSubframe
Default implementation ofStompHeadersSubframe.
-
-
Field Summary
Fields Modifier and Type Field Description protected StompCommandcommandprotected io.netty.handler.codec.DecoderResultdecoderResultprotected DefaultStompHeadersheaders
-
Constructor Summary
Constructors Constructor Description DefaultStompHeadersSubframe(StompCommand command)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StompCommandcommand()Returns command of this frame.io.netty.handler.codec.DecoderResultdecoderResult()StompHeadersheaders()Returns headers of this frame.voidsetDecoderResult(io.netty.handler.codec.DecoderResult decoderResult)StringtoString()
-
-
-
Field Detail
-
command
protected final StompCommand command
-
decoderResult
protected io.netty.handler.codec.DecoderResult decoderResult
-
headers
protected final DefaultStompHeaders headers
-
-
Constructor Detail
-
DefaultStompHeadersSubframe
public DefaultStompHeadersSubframe(StompCommand command)
-
-
Method Detail
-
command
public StompCommand command()
Description copied from interface:StompHeadersSubframeReturns command of this frame.- Specified by:
commandin interfaceStompHeadersSubframe
-
headers
public StompHeaders headers()
Description copied from interface:StompHeadersSubframeReturns headers of this frame.- Specified by:
headersin interfaceStompHeadersSubframe
-
decoderResult
public io.netty.handler.codec.DecoderResult decoderResult()
- Specified by:
decoderResultin interfaceio.netty.handler.codec.DecoderResultProvider
-
setDecoderResult
public void setDecoderResult(io.netty.handler.codec.DecoderResult decoderResult)
- Specified by:
setDecoderResultin interfaceio.netty.handler.codec.DecoderResultProvider
-
-