LastSmtpContent Type — netty Architecture
Architecture documentation for the LastSmtpContent type/interface in LastSmtpContent.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f1e6f897_df62_e35b_3a5c_d7f38f4efa7f["LastSmtpContent"] efdf32e1_e39e_8664_0a48_0655469567b6["LastSmtpContent.java"] f1e6f897_df62_e35b_3a5c_d7f38f4efa7f -->|defined in| efdf32e1_e39e_8664_0a48_0655469567b6 style f1e6f897_df62_e35b_3a5c_d7f38f4efa7f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-smtp/src/main/java/io/netty/handler/codec/smtp/LastSmtpContent.java lines 28–119
@UnstableApi
public interface LastSmtpContent extends SmtpContent {
/**
* Empty {@link LastSmtpContent}.
*/
LastSmtpContent EMPTY_LAST_CONTENT = new LastSmtpContent() {
@Override
public LastSmtpContent copy() {
return this;
}
@Override
public LastSmtpContent duplicate() {
return this;
}
@Override
public LastSmtpContent retainedDuplicate() {
return this;
}
@Override
public LastSmtpContent replace(ByteBuf content) {
return new DefaultLastSmtpContent(content);
}
@Override
public LastSmtpContent retain() {
return this;
}
@Override
public LastSmtpContent retain(int increment) {
return this;
}
@Override
public LastSmtpContent touch() {
return this;
}
@Override
public LastSmtpContent touch(Object hint) {
return this;
}
@Override
public ByteBuf content() {
return Unpooled.EMPTY_BUFFER;
}
@Override
public int refCnt() {
return 1;
}
@Override
public boolean release() {
return false;
}
@Override
public boolean release(int decrement) {
return false;
}
};
@Override
LastSmtpContent copy();
@Override
LastSmtpContent duplicate();
@Override
LastSmtpContent retainedDuplicate();
@Override
LastSmtpContent replace(ByteBuf content);
@Override
Source
Frequently Asked Questions
What is the LastSmtpContent type?
LastSmtpContent is a type/interface in the netty codebase, defined in codec-smtp/src/main/java/io/netty/handler/codec/smtp/LastSmtpContent.java.
Where is LastSmtpContent defined?
LastSmtpContent is defined in codec-smtp/src/main/java/io/netty/handler/codec/smtp/LastSmtpContent.java at line 28.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free