File size: 511 Bytes
e789b06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
TDAT: protected void cleanup(ChannelHandlerContext ctx) { // Make sure we dispose everything on exit on session close SMTPSession smtpSession = (SMTPSession) ctx.getAttachment(); if (smtpSession != null) { LifecycleUtil.dispose(smtpSession.getState().get(SMTPConstants.MAIL)); LifecycleUtil.dispose(smtpSession.getState().get(SMTPConstants.DATA_MIMEMESSAGE_STREAMSOURCE)); } super.cleanup(ctx); } COM: <s> cleanup temporary files </s> |