Interface ConferenceMobileLinkListener
-
public interface ConferenceMobileLinkListenerListener interface used to report mobile link connection and disconnection related events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonConferenceMobileLinkConnected(ConferenceMobileLink mobileLink, ConferenceMobileLinkConnectionDetails conferenceMobileLinkConnectionDetails)Called to report a mobile link connection to the room system identified by roomSystemAddress has been established.voidOnConferenceMobileLinkDisconnected(ConferenceMobileLink mobileLink, boolean endedRemotely)Called to report a mobile link connection to the room system has ended.
-
-
-
Method Detail
-
onConferenceMobileLinkConnected
void onConferenceMobileLinkConnected(ConferenceMobileLink mobileLink, ConferenceMobileLinkConnectionDetails conferenceMobileLinkConnectionDetails)
Called to report a mobile link connection to the room system identified by roomSystemAddress has been established.- Parameters:
mobileLink- Mobile link instance this callback is associated with.conferenceMobileLinkConnectionDetails- The connection details.
-
OnConferenceMobileLinkDisconnected
void OnConferenceMobileLinkDisconnected(ConferenceMobileLink mobileLink, boolean endedRemotely)
Called to report a mobile link connection to the room system has ended.- Parameters:
mobileLink- Mobile link instance this callback is associated with.endedRemotely- Flag indicating whether the mobile link connection was ended by the room system or the local client.
-
-