Package 

Interface GiniCaptureNetworkCallback

    • Method Summary

      Modifier and Type Method Description
      abstract void failure(E error) Called when the network call failed.
      abstract void success(R result) Called when the network call completed successfully.
      abstract void cancelled() Called when the network call has been cancelled.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • failure

         abstract void failure(E error)

        Called when the network call failed.

        Parameters:
        error - failure error
      • success

         abstract void success(R result)

        Called when the network call completed successfully.

        Parameters:
        result - network call result
      • cancelled

         abstract void cancelled()

        Called when the network call has been cancelled.