Interface CreateCollaborationCompletionHandler


  • public interface CreateCollaborationCompletionHandler

    Defines an interface that the client application needs to implement to receive the result of an operation requested on various collaboration related methods. This listener may be implemented as an anonymous class to receive initial feedback about the outcome of a previously invoked operation by the application. It should be noted that not all operations take in a listener as input argument.

    • Method Detail

      • onSuccess

        void onSuccess​(Collaboration collaboration)
        Reports that the operation was successfully completed.
        Parameters:
        collaboration - collaboration object.
      • onError

        void onError​(CollaborationException error)
        Reports that the operation has failed.
        Parameters:
        error - Information about failure details.