Package io.netty.handler.codec.smtp
Interface LastSmtpContent
-
- All Superinterfaces:
io.netty.buffer.ByteBufHolder,io.netty.util.ReferenceCounted,SmtpContent
- All Known Implementing Classes:
DefaultLastSmtpContent
@UnstableApi public interface LastSmtpContent extends SmtpContent
The last part of a sequence ofSmtpContents that are sent after aDATArequest. Be aware that aSmtpContent/LastSmtpContentsequence must always use CRLF as line delimiter and the lines that start with a DOT must be escaped with an extra DOT as specified by RFC2821.
-
-
Field Summary
Fields Modifier and Type Field Description static LastSmtpContentEMPTY_LAST_CONTENTEmptyLastSmtpContent.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastSmtpContentcopy()LastSmtpContentduplicate()LastSmtpContentreplace(io.netty.buffer.ByteBuf content)LastSmtpContentretain()LastSmtpContentretain(int increment)LastSmtpContentretainedDuplicate()LastSmtpContenttouch()LastSmtpContenttouch(Object hint)
-
-
-
Field Detail
-
EMPTY_LAST_CONTENT
static final LastSmtpContent EMPTY_LAST_CONTENT
EmptyLastSmtpContent.
-
-
Method Detail
-
copy
LastSmtpContent copy()
- Specified by:
copyin interfaceio.netty.buffer.ByteBufHolder- Specified by:
copyin interfaceSmtpContent
-
duplicate
LastSmtpContent duplicate()
- Specified by:
duplicatein interfaceio.netty.buffer.ByteBufHolder- Specified by:
duplicatein interfaceSmtpContent
-
retainedDuplicate
LastSmtpContent retainedDuplicate()
- Specified by:
retainedDuplicatein interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainedDuplicatein interfaceSmtpContent
-
replace
LastSmtpContent replace(io.netty.buffer.ByteBuf content)
- Specified by:
replacein interfaceio.netty.buffer.ByteBufHolder- Specified by:
replacein interfaceSmtpContent
-
retain
LastSmtpContent retain()
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted- Specified by:
retainin interfaceSmtpContent
-
retain
LastSmtpContent retain(int increment)
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted- Specified by:
retainin interfaceSmtpContent
-
touch
LastSmtpContent touch()
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted- Specified by:
touchin interfaceSmtpContent
-
touch
LastSmtpContent touch(Object hint)
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted- Specified by:
touchin interfaceSmtpContent
-
-