| Modifier and Type | Class and Description |
|---|---|
class |
ObjectEditorPanel
Used to edit the distributed object fields of a particular
configuration object.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CrowdObjectAccess.PlaceAccessController.allowSubscribe(DObject object,
Subscriber<?> sub) |
boolean |
CrowdObjectAccess.BureauAccessController.allowSubscribe(DObject object,
Subscriber<?> sub) |
| Modifier and Type | Method and Description |
|---|---|
<T extends DObject> |
ClientDObjectMgr.subscribeToObject(int oid,
Subscriber<T> target) |
<T extends DObject> |
ClientDObjectMgr.unsubscribeFromObject(int oid,
Subscriber<T> target) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ProxySubscriber
Defines a special kind of subscriber that proxies events for a subordinate distributed object
manager.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DObject.addSubscriber(Subscriber<?> sub)
Don't call this function! Go through the distributed object manager instead to ensure that
everything is done on the proper thread.
|
boolean |
AccessController.allowSubscribe(DObject object,
Subscriber<?> subscriber)
Should return true if the supplied subscriber is allowed to
subscribe to the specified object.
|
boolean |
DObject.checkPermissions(Subscriber<?> sub)
Checks to ensure that the specified subscriber has access to this object.
|
void |
DObject.removeSubscriber(Subscriber<?> sub)
Don't call this function! Go through the distributed object manager instead to ensure that
everything is done on the proper thread.
|
<T extends DObject> |
DObjectManager.subscribeToObject(int oid,
Subscriber<T> target)
Requests that the specified subscriber be subscribed to the object identified by the
supplied object id.
|
<T extends DObject> |
DObjectManager.unsubscribeFromObject(int oid,
Subscriber<T> target)
Requests that the specified subscriber be unsubscribed from the object identified by the
supplied object id.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PeerNode
Contains all runtime information for one of our peer nodes.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends DObject> |
PresentsDObjectMgr.subscribeToObject(int oid,
Subscriber<T> target) |
<T extends DObject> |
PresentsDObjectMgr.unsubscribeFromObject(int oid,
Subscriber<T> target) |
| Modifier and Type | Class and Description |
|---|---|
class |
SafeSubscriber<T extends DObject>
A class that safely handles the asynchronous subscription to a distributed object when it is
not know if the subscription will complete before the subscriber decides they no longer wish to
be subscribed.
|
| Constructor and Description |
|---|
SafeSubscriber(int oid,
Subscriber<T> subscriber,
ChangeListener... listeners)
Creates a safe subscriber for the specified distributed object which will interact with the
specified subscriber.
|
Copyright © 2015. All rights reserved.