Realtime Store Listener
interface RealtimeStoreListener
Listener interface for observing value changes in the meeting's RealtimeStore.
Code Example:
meeting.realtimeStore.subscribe("score", new RealtimeStoreListener() {
public void onValueChanged(String newValue, Participant updatedBy) {
Log.d("Store", updatedBy.getDisplayName() + " set score to " + newValue);
}
});
Content copied to clipboard