Uses of Interface
com.wowza.wms.sharedobject.ISharedObject

Packages that use ISharedObject
com.wowza.wms.sharedobject   
 

Uses of ISharedObject in com.wowza.wms.sharedobject
 

Classes in com.wowza.wms.sharedobject that implement ISharedObject
 class SharedObject
           
 

Methods in com.wowza.wms.sharedobject that return ISharedObject
 ISharedObject ISharedObjects.get(String name)
          Get shared object by name.
 ISharedObject ISharedObjects.getOrCreate(String name)
          Get shared object by name if it does not exist create a new shared object with the given name.
 

Methods in com.wowza.wms.sharedobject with parameters of type ISharedObject
 boolean ISharedObjects.exists(ISharedObject sharedObject)
          Is sharedObject in this list (by shared object reference).
 void ISharedObjectNotify.onSharedObjectConnect(ISharedObject sharedObject, IClient client)
          Triggered when client connects to sharedObject
 void ISharedObjectNotify.onSharedObjectCreate(ISharedObject sharedObject)
          Triggered when sharedObject created
 void ISharedObjectNotify.onSharedObjectDestroy(ISharedObject sharedObject)
          Triggered when sharedObject destroyed
 void ISharedObjectNotify.onSharedObjectDisconnect(ISharedObject sharedObject, IClient client)
          Triggered when client disconnects from sharedObject
 void ISharedObjectSlotNotify.onSlotDelete(ISharedObject sharedObject, ISharedObjectSlot slot)
          Triggered when sharedObject slot value deleted
 void ISharedObjectSlotNotify.onSlotSetValue(ISharedObject sharedObject, ISharedObjectSlot slot)
          Triggered when sharedObject slot value set
 void ISharedObjects.put(String objectName, ISharedObject sharedObject)
          Add or replace a shared object.