Input - input type.Output - output type.public interface GenericRequestHandler<Input,Output>
| Modifier and Type | Method and Description |
|---|---|
boolean |
canHandle(Input input)
Returns true if the handler can dispatch the current request.
|
Output |
handle(Input input)
Handles the request.
|
boolean canHandle(Input input)
input - input to the request handlerCopyright © 2023. All rights reserved.