Package 

Interface GiniCaptureNetworkCallback

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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
    • Constructor Detail

    • 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.