Interface RequestListener

All Superinterfaces:
EventListener

public interface RequestListener extends EventListener
Listener interface for receiving request messages. When a request message arrives, the handleRequest method is called.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when a request message is received.
  • Method Details

    • handleRequest

      void handleRequest(RequestEvent event) throws Exception
      Called when a request message is received.
      Parameters:
      event - describes the request event.
      Throws:
      Exception - if an error occurs.