Interface ServerRsetReplyHandler
- All Superinterfaces:
ServerReplyHandler
Handler for RSET command response.
RFC 5321 ยง4.1.1.5 (250 reset OK).
This handler receives the server's response to a RSET command. RSET aborts the current mail transaction and returns to the session state, ready for a new MAIL FROM command.
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleResetOk(ClientSession session) Called when the reset is acknowledged (250).Methods inherited from interface org.bluezoo.gumdrop.smtp.client.handler.ServerReplyHandler
handleReply, handleServiceClosing
-
Method Details
-
handleResetOk
Called when the reset is acknowledged (250).The current transaction has been aborted. The handler can start a new transaction or quit.
- Parameters:
session- operations to start a new transaction or quit
-