Interface Session.ArchiveListener

    • Method Detail

      • onArchiveStarted

        void onArchiveStarted​(Session session,
                              java.lang.String id,
                              java.lang.String name)
        Called when an archive of the session starts recording. In response to this method, you may want to add a user interface notification (such as an icon in the Publisher view) that indicates the session is being recorded.
        Parameters:
        session - The session that is being recorded.
        id - The unique ID of the archive.
        name - The name of the archive (if one was provided when the archive was created).
      • onArchiveStopped

        void onArchiveStopped​(Session session,
                              java.lang.String id)
        Called when an archive of the session stops being recorded. In response to this method, you may want to remove a user interface notification (such as an icon in the Publisher view) the session recording has stopped.
        Parameters:
        session - The session that was being recorded.
        id - The unique ID of the archive.