Package org.red5.server.api.so
Interface ISharedObjectListener
public interface ISharedObjectListener
Notifications about shared object updates.
- Author:
- The Red5 Project, Luke Hubbard (luke@codegent.com), Joachim Bauch (jojo@struktur.de)
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when all attributes of a shared object are removed.voidCalled when a client connects to a shared object.voidonSharedObjectDelete(ISharedObjectBase so, String key) Called when an attribute is deleted from the shared object.voidCalled when a client disconnects from a shared object.voidonSharedObjectSend(ISharedObjectBase so, String method, List<?> params) Called when a shared object method call is sent.voidonSharedObjectUpdate(ISharedObjectBase so, String key, Object value) Called when a shared object attribute is updated.voidonSharedObjectUpdate(ISharedObjectBase so, Map<String, Object> values) Called when multiple attributes of a shared object are updated.voidonSharedObjectUpdate(ISharedObjectBase so, IAttributeStore values) Called when multiple attributes of a shared object are updated.
-
Method Details