Package io.netty.handler.codec.smtp
Interface SmtpContent
-
- All Superinterfaces:
io.netty.buffer.ByteBufHolder,io.netty.util.ReferenceCounted
- All Known Subinterfaces:
LastSmtpContent
- All Known Implementing Classes:
DefaultLastSmtpContent,DefaultSmtpContent
@UnstableApi public interface SmtpContent extends io.netty.buffer.ByteBufHolderContent that is sent after theDATArequest. 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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SmtpContentcopy()SmtpContentduplicate()SmtpContentreplace(io.netty.buffer.ByteBuf content)SmtpContentretain()SmtpContentretain(int increment)SmtpContentretainedDuplicate()SmtpContenttouch()SmtpContenttouch(Object hint)
-
-
-
Method Detail
-
copy
SmtpContent copy()
- Specified by:
copyin interfaceio.netty.buffer.ByteBufHolder
-
duplicate
SmtpContent duplicate()
- Specified by:
duplicatein interfaceio.netty.buffer.ByteBufHolder
-
retainedDuplicate
SmtpContent retainedDuplicate()
- Specified by:
retainedDuplicatein interfaceio.netty.buffer.ByteBufHolder
-
replace
SmtpContent replace(io.netty.buffer.ByteBuf content)
- Specified by:
replacein interfaceio.netty.buffer.ByteBufHolder
-
retain
SmtpContent retain()
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
retain
SmtpContent retain(int increment)
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
touch
SmtpContent touch()
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
touch
SmtpContent touch(Object hint)
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
-