RequestHandlerInterface
interface RequestHandlerInterface (View source)
The interface for a request handler
Methods
void
handleRequest()
Handles a raw request
mixed
canHandleRequest()
Checks if the request handler can handle the current request.
int
getPriority()
Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".
Details
void
handleRequest()
Handles a raw request
mixed
canHandleRequest()
Checks if the request handler can handle the current request.
int
getPriority()
Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".