Interface CompletionListener<T>

Type Parameters:
T - the type of data returned at completion

public interface CompletionListener<T>
Report the completion of an operation.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Callback invoked after the operation completes.
  • Method Details

    • onCompletion

      void onCompletion(T data)
      Callback invoked after the operation completes.
      Parameters:
      data - the data returned at completion