Interface Callback<T>


public interface Callback<T>
Used to specify a method to be executed later with a given argument.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    call(T param)
    Call this method to invoke the callback
  • Method Details

    • call

      void call(T param)
      Call this method to invoke the callback
      Parameters:
      param - The parameter expected by the callback. In the case of a 'Void' Callback this should be null.