|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Broadcaster | |
|---|---|
| org.atmosphere.annotation | |
| org.atmosphere.config.managed | |
| org.atmosphere.cpr | |
| org.atmosphere.interceptor | |
| 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 | |
|---|---|
protected Broadcaster |
AtmosphereResourceImpl.broadcaster
|
Broadcaster |
AtmosphereFramework.AtmosphereHandlerWrapper.broadcaster
|
| Methods in org.atmosphere.cpr with type parameters of type Broadcaster | ||
|---|---|---|
|
DefaultBroadcasterFactory.get(Class<T> c,
Object id)
|
|
abstract
|
BroadcasterFactory.get(Class<T> c,
Object id)
Create a new instance of Broadcaster and store it for. |
|
|
DefaultBroadcasterFactory.lookup(Class<T> c,
Object id)
|
|
abstract
|
BroadcasterFactory.lookup(Class<T> c,
Object id)
Lookup a Broadcaster instance using getID() or ID
used when invoking BroadcasterFactory.getDefault(). |
|
|
DefaultBroadcasterFactory.lookup(Class<T> c,
Object id,
boolean createIfNull)
|
|
abstract
|
BroadcasterFactory.lookup(Class<T> c,
Object id,
boolean createIfNull)
Lookup a Broadcaster instance using getID() or ID
used when invoking BroadcasterFactory.getDefault(). |
|
|
DefaultBroadcasterFactory.lookup(Class<T> c,
Object id,
boolean createIfNull,
boolean unique)
|
|
abstract
|
BroadcasterFactory.lookup(Object id)
Lookup a Broadcaster instance using getID() or ID
used when invoking BroadcasterFactory.getDefault(). |
|
abstract
|
BroadcasterFactory.lookup(Object id,
boolean createIfNull)
Lookup a Broadcaster instance using getID() or ID
used when invoking BroadcasterFactory.getDefault(). |
|
| 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()
|
abstract Broadcaster |
BroadcasterFactory.get()
Return an instance of the default Broadcaster. |
Broadcaster |
DefaultBroadcasterFactory.get(Object id)
|
abstract 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 current 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. |
| Methods in org.atmosphere.cpr that return types with arguments of type Broadcaster | |
|---|---|
Set<Broadcaster> |
DefaultAtmosphereResourceFactory.broadcasters(String uuid)
Return all Broadcaster associated with a AtmosphereResource.uuid(), e.g for which
addAtmosphereResource(AtmosphereResource) has been called. |
abstract Set<Broadcaster> |
AtmosphereResourceFactory.broadcasters(String uuid)
Return all Broadcaster associated with a AtmosphereResource.uuid(), e.g for which
addAtmosphereResource(AtmosphereResource) has been called. |
Future<List<Broadcaster>> |
MetaBroadcaster.broadcastTo(String broadcasterID,
Object message)
Broadcast the message to all Broadcasters whose getID() matches the broadcasterID value. |
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. |
Collection<Broadcaster> |
DefaultBroadcasterFactory.lookupAll()
|
abstract 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. |
| Methods in org.atmosphere.cpr with parameters of type Broadcaster | |
|---|---|
boolean |
DefaultBroadcasterFactory.add(Broadcaster b,
Object id)
|
abstract 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 |
DefaultAtmosphereResourceFactory.create(AtmosphereConfig config,
Broadcaster broadcaster,
AtmosphereRequest request,
AtmosphereResponse response,
AsyncSupport<?> a,
AtmosphereHandler handler)
Create an AtmosphereResourceImpl. |
abstract 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. |
abstract 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. |
abstract 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)
|
abstract 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)
|
abstract boolean |
BroadcasterFactory.remove(Broadcaster b,
Object id)
Remove a Broadcaster from the list. |
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 current Broadcaster. |
| Method parameters in org.atmosphere.cpr with type arguments of type Broadcaster | |
|---|---|
static BroadcasterFactory |
DefaultBroadcasterFactory.buildAndReplaceDefaultfactory(Class<? extends Broadcaster> clazz,
AtmosphereConfig c)
Build a default BroadcasterFactory returned when invoking BroadcasterFactory.getDefault() ()}. |
void |
DefaultBroadcasterFactory.configure(Class<? extends Broadcaster> clazz,
String broadcasterLifeCyclePolicy,
AtmosphereConfig c)
|
abstract 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.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)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||