Interface ConferenceSlideViewerListener
-
public interface ConferenceSlideViewerListenerListener interface used to report conference slide viewer related events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonConferenceSlideViewerNewSlideAvailable(ConferenceSlideViewer slideViewer, ConferenceSlide slideInfo)Called to report a new slide has been added to the presentation.voidonConferenceSlideViewerSubscriptionEnded(ConferenceSlideViewer slideViewer, boolean endedRemotely)Called to report the server ended the content slide viewer subscription.
-
-
-
Method Detail
-
onConferenceSlideViewerSubscriptionEnded
void onConferenceSlideViewerSubscriptionEnded(ConferenceSlideViewer slideViewer, boolean endedRemotely)
Called to report the server ended the content slide viewer subscription. This happens when the conference presentation session ends.- Parameters:
slideViewer- Conference slide viewer instance this callback is associated with.endedRemotely- Flag indicating whether the subscription was ended remotely by the server or locally by the client application.
-
onConferenceSlideViewerNewSlideAvailable
void onConferenceSlideViewerNewSlideAvailable(ConferenceSlideViewer slideViewer, ConferenceSlide slideInfo)
Called to report a new slide has been added to the presentation.- Parameters:
slideViewer- Conference slide viewer instance this callback is associated with.slideInfo- Information about the new slide.
-
-