Interface OutboundMessageType
- All Known Implementing Classes:
EppRequestMessage
,HttpRequestMessage
public interface OutboundMessageType
Marker Interface that is implemented by all classes that serve as
outboundMessages
in
channel pipeline-
Method Summary
Modifier and TypeMethodDescriptionmodifyMessage
(String... args) AllOutboundMessageType
implementing classes should be able to be modified by token with String argumentsname()
Necessary to inform metrics collector what kind of message is sent downChannelPipeline
.Necessary to inform metrics collector what kind of message is sent inboundChannelPipeline
.
-
Method Details
-
modifyMessage
AllOutboundMessageType
implementing classes should be able to be modified by token with String arguments- Throws:
UndeterminedStateException
-
name
String name()Necessary to inform metrics collector what kind of message is sent downChannelPipeline
. Not equivalent to toString, as to different instances will have the same name if they perform the same action. -
responseName
String responseName()Necessary to inform metrics collector what kind of message is sent inboundChannelPipeline
. Equivalent toname
but forInboundMessageType
.
-