Interface Receiver<T>

All Known Subinterfaces:
CoreHandler
All Known Implementing Classes:
BusForwarder, BusRouter, MultiHandler

public interface Receiver<T>
A handler to handle things.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle​(T request)
    Handles an incoming request without exception handling.
  • Method Details

    • handle

      void handle(T request)
      Handles an incoming request without exception handling.
      Parameters:
      request - the request to be handled.