Interface RequestHandler<Request>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RequestHandler<Request>
Functional interface used for routes in a handler.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    submit​(Request request)
     
  • Method Details

    • submit

      void submit(Request request)