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);
    }
});

Functions

Link copied to clipboard
abstract fun onValueChanged(newValue: String, updatedBy: Participant)
Called every time the observed key's value changes.