handle abstract method

FutureOr<TResponse> handle(
  1. TRequest request,
  2. RequestHandlerDelegate<TResponse> next
)

Pipeline handler for request.

Perform any additional behavior and await the next delegate.

Implementation

FutureOr<TResponse> handle(
  TRequest request,
  RequestHandlerDelegate<TResponse> next,
);