Interface RawHandshakeDataRequestResponse
public interface RawHandshakeDataRequestResponse
Represents a callback for the response of a request payload.
- 
Method SummaryModifier and TypeMethodDescriptionvoidfail(ChannelException exception) Sets the response of the request payload as failed with the givenChannelException.voidsuccess(Consumer<ChannelBuf> response) Sets the response of the request payload as success with the given response payload.
- 
Method Details- 
failSets 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
 
- 
successSets the response of the request payload as success with the given response payload.- Parameters:
- response- The response payload
 
 
-