Interface RawHandshakeDataRequestResponse
public interface RawHandshakeDataRequestResponse
Represents a callback for the response of a request payload.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
fail
(ChannelException exception) Sets the response of the request payload as failed with the givenChannelException
.void
success
(Consumer<ChannelBuf> response) Sets the response of the request payload as success with the given response payload.
-
Method Details
-
fail
Sets the response of the request payload as failed with the givenChannelException
.If this response fails, then will other side of the connection end up with a
NoResponseException
.- Parameters:
exception
- The exception
-
success
Sets the response of the request payload as success with the given response payload.- Parameters:
response
- The response payload
-