Interface GenericRequester

All Superinterfaces:
Serializable
All Known Implementing Classes:
GenericResultWaiter

public interface GenericRequester extends Serializable
Generic Requester Interface
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Receive the result of an asynchronous service call
    void
    Receive an exception (Throwable) from an asynchronous service cell
  • Method Details

    • receiveResult

      void receiveResult(Map<String,Object> result)
      Receive the result of an asynchronous service call
      Parameters:
      result - Map of name, value pairs composing the result
    • receiveThrowable

      void receiveThrowable(Throwable t)
      Receive an exception (Throwable) from an asynchronous service cell
      Parameters:
      t - The Throwable which was received