Interface AsyncCallback<T>

Type Parameters:
T - parameter type for the callback

public interface AsyncCallback<T>
Generic interface that can be used for calling back when a corresponding asynchronous operation completes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    callback(T response)
    This method is called back when the corresponding asynchronous operation completes.
  • Method Details

    • callback

      void callback(T response)
      This method is called back when the corresponding asynchronous operation completes.
      Parameters:
      response - response of the callback