Uses of Interface
org.atmosphere.cpr.Broadcaster

Packages that use Broadcaster
org.atmosphere.annotation   
org.atmosphere.config.managed   
org.atmosphere.cpr   
org.atmosphere.interceptor   
org.atmosphere.lifecycle   
org.atmosphere.pool   
org.atmosphere.util   
org.atmosphere.websocket   
 

Uses of Broadcaster in org.atmosphere.annotation
 

Methods in org.atmosphere.annotation that return Broadcaster
static Broadcaster AnnotationUtil.broadcaster(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster, String path)
           
 

Methods in org.atmosphere.annotation that return types with arguments of type Broadcaster
static Class<? extends Broadcaster> AnnotationUtil.broadcasterClass(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster)
           
 

Method parameters in org.atmosphere.annotation with type arguments of type Broadcaster
static Broadcaster AnnotationUtil.broadcaster(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster, String path)
           
static Class<? extends Broadcaster> AnnotationUtil.broadcasterClass(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster)
           
 void BroadcasterServiceProcessor.handle(AtmosphereFramework framework, Class<Broadcaster> annotatedClass)
           
 

Uses of Broadcaster in org.atmosphere.config.managed
 

Methods in org.atmosphere.config.managed that return types with arguments of type Broadcaster
 Class<? extends Broadcaster> ManagedServiceInterceptor.ManagedAnnotation.broadcaster()
           
 

Uses of Broadcaster in org.atmosphere.cpr
 

Classes in org.atmosphere.cpr that implement Broadcaster
 class DefaultBroadcaster
          The default Broadcaster implementation.
 

Fields in org.atmosphere.cpr declared as Broadcaster
 Broadcaster AtmosphereFramework.AtmosphereHandlerWrapper.broadcaster
           
 

Fields in org.atmosphere.cpr with type parameters of type Broadcaster
protected  List<Broadcaster> AtmosphereResourceImpl.broadcasters
           
protected  Class<? extends Broadcaster> DefaultBroadcasterFactory.clazz
           
protected  ConcurrentHashMap<Object,Broadcaster> DefaultBroadcasterFactory.store
           
 

Methods in org.atmosphere.cpr with type parameters of type Broadcaster
protected
<T extends Broadcaster>
T
DefaultBroadcasterFactory.createBroadcaster(Class<T> c, Object id)
           
<T extends Broadcaster>
T
DefaultBroadcasterFactory.get(Class<T> c, Object id)
           
<T extends Broadcaster>
T
BroadcasterFactory.get(Class<T> c, Object id)
          Create a new instance of Broadcaster and store it for.
<T extends Broadcaster>
T
DefaultBroadcasterFactory.lookup(Class<T> c, Object id)
           
<T extends Broadcaster>
T
BroadcasterFactory.lookup(Class<T> c, Object id)
          Lookup a Broadcaster instance using getID() or ID
<T extends Broadcaster>
T
DefaultBroadcasterFactory.lookup(Class<T> c, Object id, boolean createIfNull)
           
<T extends Broadcaster>
T
BroadcasterFactory.lookup(Class<T> c, Object id, boolean createIfNull)
          Lookup a Broadcaster instance using getID() or ID
<T extends Broadcaster>
T
DefaultBroadcasterFactory.lookup(Class<T> c, Object id, boolean createIfNull, boolean unique)
           
<T extends Broadcaster>
T
BroadcasterFactory.lookup(Object id)
          Lookup a Broadcaster instance using getID() or ID
<T extends Broadcaster>
T
BroadcasterFactory.lookup(Object id, boolean createIfNull)
          Lookup a Broadcaster instance using getID() or ID
 

Methods in org.atmosphere.cpr that return Broadcaster
 Broadcaster DefaultBroadcaster.addAtmosphereResource(AtmosphereResource r)
           
 Broadcaster Broadcaster.addAtmosphereResource(AtmosphereResource resource)
          Add a AtmosphereResource to the list of items to be notified when the broadcast(java.lang.Object) is invoked.
 Broadcaster DefaultBroadcaster.addBroadcasterListener(BroadcasterListener b)
           
 Broadcaster Broadcaster.addBroadcasterListener(BroadcasterListener b)
          Add a BroadcasterListener.
 Broadcaster AtmosphereResourceEventImpl.broadcaster()
           
 Broadcaster AtmosphereResourceEvent.broadcaster()
          Return the broadcaster associated with the AtmosphereResource this object contains.
 Broadcaster DefaultBroadcasterFactory.get()
           
 Broadcaster BroadcasterFactory.get()
          Return an instance of the default Broadcaster.
 Broadcaster DefaultBroadcasterFactory.get(Object id)
           
 Broadcaster BroadcasterFactory.get(Object id)
          Create a new instance of Broadcaster and store it for.
 Broadcaster Meteor.getBroadcaster()
          Return the underlying Broadcaster.
 Broadcaster ClusterBroadcastFilter.getBroadcaster()
          Return the Broadcaster.
 Broadcaster AtmosphereResourceImpl.getBroadcaster()
           
 Broadcaster AtmosphereResource.getBroadcaster()
          Return the first added Broadcaster.
protected  Broadcaster AtmosphereResourceImpl.getBroadcaster(boolean autoCreate)
           
 Broadcaster DefaultBroadcaster.initialize(String name, AtmosphereConfig config)
           
 Broadcaster DefaultBroadcaster.initialize(String name, URI uri, AtmosphereConfig config)
           
 Broadcaster Broadcaster.initialize(String name, URI uri, AtmosphereConfig config)
          Configure a Broadcaster.
 Broadcaster DefaultBroadcasterFactory.lookup(Object id)
           
 Broadcaster DefaultBroadcasterFactory.lookup(Object id, boolean createIfNull)
           
 Broadcaster DefaultBroadcaster.removeAtmosphereResource(AtmosphereResource r)
           
 Broadcaster Broadcaster.removeAtmosphereResource(AtmosphereResource resource)
          Remove a AtmosphereResource from the list of s to be notified when the broadcast(java.lang.Object) is invoked.
protected  Broadcaster DefaultBroadcaster.removeAtmosphereResource(AtmosphereResource r, boolean executeDone)
           
 Broadcaster DefaultBroadcaster.removeBroadcasterListener(BroadcasterListener b)
           
 Broadcaster Broadcaster.removeBroadcasterListener(BroadcasterListener b)
          Remove a BroadcasterListener.
 Broadcaster DefaultBroadcaster.rename(String id)
          Rename this Broadcaster without invoking it's associated BroadcasterFactory.
 

Methods in org.atmosphere.cpr that return types with arguments of type Broadcaster
 List<Broadcaster> AtmosphereResourceImpl.broadcasters()
           
 List<Broadcaster> AtmosphereResource.broadcasters()
          Return an unmodifiable list of Broadcasters associated with this resource
 Set<Broadcaster> DefaultAtmosphereResourceFactory.broadcasters(String uuid)
          Deprecated. Use AtmosphereResourceFactory.find(String).broadcasters() instead
 Set<Broadcaster> AtmosphereResourceFactory.broadcasters(String uuid)
          Deprecated. Use AtmosphereResourceFactory.find(String).broadcasters() instead
 Future<List<Broadcaster>> MetaBroadcaster.broadcastTo(String broadcasterID, Object message)
          Broadcast the message to all Broadcasters whose getID() matches the broadcasterID value.
 Future<List<Broadcaster>> DefaultMetaBroadcaster.broadcastTo(String broadcasterID, Object message)
           
 Future<List<Broadcaster>> MetaBroadcaster.broadcastTo(String broadcasterID, Object message, boolean cacheMessage)
          Broadcast the message to all Broadcasters whose getID() matches the broadcasterID value.
 Future<List<Broadcaster>> DefaultMetaBroadcaster.broadcastTo(String broadcasterID, Object message, boolean cacheMessage)
           
 Future<List<Broadcaster>> MetaBroadcaster.delayTo(String broadcasterID, Object message, int time, TimeUnit unit)
          Delay the message delivery to Broadcasters whose getID() matches the broadcasterID value.
 Future<List<Broadcaster>> DefaultMetaBroadcaster.delayTo(String broadcasterID, Object message, int time, TimeUnit unit)
           
 Collection<Broadcaster> DefaultBroadcasterFactory.lookupAll()
           
 Collection<Broadcaster> BroadcasterFactory.lookupAll()
          Return an immutable Collection of Broadcaster this factory contains.
 Future<List<Broadcaster>> MetaBroadcaster.scheduleTo(String broadcasterID, Object message, int time, TimeUnit unit)
          Broadcast the message at a fixed rate to all Broadcasters whose getID() matches the broadcasterID value.
 Future<List<Broadcaster>> DefaultMetaBroadcaster.scheduleTo(String broadcasterID, Object message, int time, TimeUnit unit)
           
 

Methods in org.atmosphere.cpr with parameters of type Broadcaster
 boolean DefaultBroadcasterFactory.add(Broadcaster b, Object id)
           
 boolean BroadcasterFactory.add(Broadcaster b, Object id)
          Add a Broadcaster to the list.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, Broadcaster broadcaster)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, Broadcaster broadcaster, List<AtmosphereInterceptor> l)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereResource AtmosphereResourceImpl.addBroadcaster(Broadcaster broadcaster)
           
 AtmosphereResource AtmosphereResource.addBroadcaster(Broadcaster broadcaster)
          Add/Associate a Broadcaster with this resource.
 AtmosphereResource DefaultAtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest request, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest request, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 AtmosphereResource DefaultAtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest request, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler, AtmosphereResource.TRANSPORT t)
          Create an AtmosphereResourceImpl.
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest request, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler, AtmosphereResource.TRANSPORT t)
          Create an AtmosphereResourceImpl.
 AtmosphereResource DefaultAtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 AtmosphereResource DefaultAtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler, AtmosphereResource.TRANSPORT t)
           
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler, AtmosphereResource.TRANSPORT t)
           
 AtmosphereResource AtmosphereResourceImpl.initialize(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest req, AtmosphereResponse response, AsyncSupport asyncSupport, AtmosphereHandler atmosphereHandler)
          Initialize an AtmosphereResource.
 AtmosphereResource AtmosphereResource.initialize(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest req, AtmosphereResponse response, AsyncSupport asyncSupport, AtmosphereHandler atmosphereHandler)
          Initialize an AtmosphereResource.
 void DefaultBroadcasterFactory.notifyOnPostCreate(Broadcaster b)
           
 void BroadcasterListenerAdapter.onAddAtmosphereResource(Broadcaster b, AtmosphereResource r)
          Invoked when an AtmosphereResource is getting associated to a Broadcaster.
 void BroadcasterListener.onAddAtmosphereResource(Broadcaster b, AtmosphereResource r)
          Invoked when an AtmosphereResource is getting associated to a Broadcaster.
 void BroadcasterListenerAdapter.onComplete(Broadcaster b)
          Invoked when the Broadcast operation completes for all AtmosphereResource.
 void BroadcasterListener.onComplete(Broadcaster b)
          Invoked when the Broadcast operation completes for all AtmosphereResource.
 void BroadcasterListenerAdapter.onMessage(Broadcaster b, Deliver deliver)
          Invoked when a broadcast(Object) is called.
 void BroadcasterListener.onMessage(Broadcaster b, Deliver deliver)
          Invoked when a broadcast(Object) is called.
 void BroadcasterListenerAdapter.onPostCreate(Broadcaster b)
          Invoked just after the Broadcaster has been created.
 void BroadcasterListener.onPostCreate(Broadcaster b)
          Invoked just after the Broadcaster has been created.
 void BroadcasterListenerAdapter.onPreDestroy(Broadcaster b)
          Invoked before a Broadcaster is about to be deleted.
 void BroadcasterListener.onPreDestroy(Broadcaster b)
          Invoked before a Broadcaster is about to be deleted.
 void BroadcasterListenerAdapter.onRemoveAtmosphereResource(Broadcaster b, AtmosphereResource r)
          Invoked when an AtmosphereResource is getting removed to a Broadcaster.
 void BroadcasterListener.onRemoveAtmosphereResource(Broadcaster b, AtmosphereResource r)
          Invoked when an AtmosphereResource is getting removed to a Broadcaster.
 boolean DefaultBroadcasterFactory.remove(Broadcaster b, Object id)
           
 boolean BroadcasterFactory.remove(Broadcaster b, Object id)
          Remove a Broadcaster from the list.
 AtmosphereResource AtmosphereResourceImpl.removeBroadcaster(Broadcaster broadcaster)
           
 AtmosphereResource AtmosphereResource.removeBroadcaster(Broadcaster broadcaster)
          Remove a Broadcaster with this resource.
 void Meteor.setBroadcaster(Broadcaster b)
          Set a Broadcaster instance.
 void ClusterBroadcastFilter.setBroadcaster(Broadcaster bc)
          The Broadcaster to use.
 AtmosphereResourceImpl AtmosphereResourceImpl.setBroadcaster(Broadcaster broadcaster)
           
 AtmosphereResource AtmosphereResource.setBroadcaster(Broadcaster broadcaster)
          Set the first Broadcaster associated with this resource.
 

Method parameters in org.atmosphere.cpr with type arguments of type Broadcaster
 void DefaultBroadcasterFactory.configure(Class<? extends Broadcaster> clazz, String broadcasterLifeCyclePolicy, AtmosphereConfig c)
           
 void BroadcasterFactory.configure(Class<? extends Broadcaster> clazz, String broadcasterLifeCyclePolicy, AtmosphereConfig c)
          Configure the factory
 

Constructors in org.atmosphere.cpr with parameters of type Broadcaster
AtmosphereFramework.AtmosphereHandlerWrapper(AtmosphereHandler atmosphereHandler, Broadcaster broadcaster)
           
AtmosphereResourceImpl(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest req, AtmosphereResponse response, AsyncSupport asyncSupport, AtmosphereHandler atmosphereHandler)
          Deprecated. 
AtmosphereSession(AtmosphereResource r, Broadcaster... broadcasters)
           
 

Constructor parameters in org.atmosphere.cpr with type arguments of type Broadcaster
DefaultBroadcasterFactory(Class<? extends Broadcaster> clazz, String broadcasterLifeCyclePolicy, AtmosphereConfig c)
          Deprecated. 
 

Uses of Broadcaster in org.atmosphere.interceptor
 

Methods in org.atmosphere.interceptor with parameters of type Broadcaster
 AtmosphereResourceStateRecovery.BroadcasterTracker AtmosphereResourceStateRecovery.BroadcasterTracker.add(Broadcaster b)
           
 void AtmosphereResourceStateRecovery.B.onAddAtmosphereResource(Broadcaster b, AtmosphereResource r)
           
 void AtmosphereResourceStateRecovery.B.onRemoveAtmosphereResource(Broadcaster b, AtmosphereResource r)
           
 AtmosphereResourceStateRecovery.BroadcasterTracker AtmosphereResourceStateRecovery.BroadcasterTracker.remove(Broadcaster b)
           
 

Uses of Broadcaster in org.atmosphere.lifecycle
 

Methods in org.atmosphere.lifecycle with parameters of type Broadcaster
 void BroadcasterLifecyclePolicyHandler.onPostCreate(Broadcaster b)
          Invoked just after the Broadcaster has been created.
 void BroadcasterLifecyclePolicyHandler.onPreDestroy(Broadcaster b)
          Invoked before a Broadcaster is about to be deleted.
 void BroadcasterLifecyclePolicyHandler.onRemoveAtmosphereResource(Broadcaster b, AtmosphereResource r)
          Invoked when an AtmosphereResource is getting removed to a Broadcaster.
 

Uses of Broadcaster in org.atmosphere.pool
 

Classes in org.atmosphere.pool with type parameters of type Broadcaster
 interface PoolableProvider<T extends Broadcaster,U>
          Implements this interface for provisioning the PoolableBroadcasterFactory with Broadcaster
 

Fields in org.atmosphere.pool with type parameters of type Broadcaster
protected  org.apache.commons.pool2.impl.GenericObjectPool<Broadcaster> UnboundedApachePoolableProvider.genericObjectPool
           
 

Methods in org.atmosphere.pool with type parameters of type Broadcaster
<T extends Broadcaster>
T
PoolableBroadcasterFactory.lookup(Class<T> c, Object id, boolean createIfNull, boolean unique)
           
<T extends Broadcaster,U>
PoolableProvider
PoolableProvider.returnBroadcaster(T b)
          Return a destroyed Broadcaster instance.
 

Methods in org.atmosphere.pool that return Broadcaster
 Broadcaster UnboundedApachePoolableProvider.borrowBroadcaster(Object id)
           
 Broadcaster BoundedApachePoolableProvider.borrowBroadcaster(Object id)
           
 Broadcaster PoolableBroadcasterFactory.createBroadcaster()
           
 Broadcaster PoolableBroadcasterFactory.get()
           
 

Methods in org.atmosphere.pool that return types with arguments of type Broadcaster
 Collection<Broadcaster> PoolableBroadcasterFactory.lookupAll()
           
 PoolableProvider<? extends Broadcaster,?> PoolableBroadcasterFactory.poolableProvider()
          The current PoolableProvider
 

Methods in org.atmosphere.pool with parameters of type Broadcaster
 boolean PoolableBroadcasterFactory.add(Broadcaster b, Object id)
           
 boolean PoolableBroadcasterFactory.remove(Broadcaster b, Object id)
           
 PoolableProvider UnboundedApachePoolableProvider.returnBroadcaster(Broadcaster b)
           
 

Method parameters in org.atmosphere.pool with type arguments of type Broadcaster
 PoolableBroadcasterFactory PoolableBroadcasterFactory.poolableProvider(PoolableProvider<? extends Broadcaster,?> poolableProvider)
          Set the implementation of PoolableProvider
 

Constructor parameters in org.atmosphere.pool with type arguments of type Broadcaster
PoolableBroadcasterFactory(Class<? extends Broadcaster> clazz, String broadcasterLifeCyclePolicy, AtmosphereConfig c)
          Deprecated. 
 

Uses of Broadcaster in org.atmosphere.util
 

Classes in org.atmosphere.util that implement Broadcaster
 class AbstractBroadcasterProxy
          Abstract Broadcaster that delegates the internal processing to a proxy.
 class ExcludeSessionBroadcaster
          An implementation of DefaultBroadcaster that exclude one or more AtmosphereResource
 class SimpleBroadcaster
          Simple Broadcaster implementation that use the calling thread when broadcasting events.
 

Methods in org.atmosphere.util that return Broadcaster
 Broadcaster SimpleBroadcaster.initialize(String id, AtmosphereConfig config)
           
 Broadcaster ExcludeSessionBroadcaster.initialize(String id, AtmosphereConfig config)
           
 Broadcaster AbstractBroadcasterProxy.initialize(String id, URI uri, AtmosphereConfig config)
           
 

Uses of Broadcaster in org.atmosphere.websocket
 

Constructor parameters in org.atmosphere.websocket with type arguments of type Broadcaster
WebSocketProcessor.WebSocketHandlerProxy(Class<? extends Broadcaster> broadcasterClazz, WebSocketHandler proxied, List<AtmosphereInterceptor> interceptors)
           
 



Copyright © 2015. All Rights Reserved.