LastStompContentSubframe Type — netty Architecture
Architecture documentation for the LastStompContentSubframe type/interface in LastStompContentSubframe.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 74caf462_bc56_d5b4_120e_0588e8f8f72a["LastStompContentSubframe"] 6d7a9cce_4986_c1e0_b97b_d6f693b84e04["LastStompContentSubframe.java"] 74caf462_bc56_d5b4_120e_0588e8f8f72a -->|defined in| 6d7a9cce_4986_c1e0_b97b_d6f693b84e04 style 74caf462_bc56_d5b4_120e_0588e8f8f72a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-stomp/src/main/java/io/netty/handler/codec/stomp/LastStompContentSubframe.java lines 29–126
public interface LastStompContentSubframe extends StompContentSubframe {
LastStompContentSubframe EMPTY_LAST_CONTENT = new LastStompContentSubframe() {
@Override
public ByteBuf content() {
return Unpooled.EMPTY_BUFFER;
}
@Override
public LastStompContentSubframe copy() {
return EMPTY_LAST_CONTENT;
}
@Override
public LastStompContentSubframe duplicate() {
return this;
}
@Override
public LastStompContentSubframe retainedDuplicate() {
return this;
}
@Override
public LastStompContentSubframe replace(ByteBuf content) {
return new DefaultLastStompContentSubframe(content);
}
@Override
public LastStompContentSubframe retain() {
return this;
}
@Override
public LastStompContentSubframe retain(int increment) {
return this;
}
@Override
public LastStompContentSubframe touch() {
return this;
}
@Override
public LastStompContentSubframe touch(Object hint) {
return this;
}
@Override
public int refCnt() {
return 1;
}
@Override
public boolean release() {
return false;
}
@Override
public boolean release(int decrement) {
return false;
}
@Override
public DecoderResult decoderResult() {
return DecoderResult.SUCCESS;
}
@Override
public void setDecoderResult(DecoderResult result) {
throw new UnsupportedOperationException("read only");
}
};
@Override
LastStompContentSubframe copy();
@Override
LastStompContentSubframe duplicate();
@Override
Source
Frequently Asked Questions
What is the LastStompContentSubframe type?
LastStompContentSubframe is a type/interface in the netty codebase, defined in codec-stomp/src/main/java/io/netty/handler/codec/stomp/LastStompContentSubframe.java.
Where is LastStompContentSubframe defined?
LastStompContentSubframe is defined in codec-stomp/src/main/java/io/netty/handler/codec/stomp/LastStompContentSubframe.java at line 29.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free