-
Methods in org.cometd.oort with parameters of type OortObject.Info
Modifier and Type |
Method |
Description |
protected void |
OortObject.notifyRemoved(OortObject.Info<T> info) |
|
protected void |
OortObject.notifyUpdated(OortObject.Info<T> oldInfo,
OortObject.Info<T> newInfo) |
|
void |
OortList.ElementListener.Adapter.onAdded(OortObject.Info<List<E>> info,
List<E> elements) |
|
void |
OortList.ElementListener.onAdded(OortObject.Info<List<E>> info,
List<E> elements) |
Callback method invoked when elements are added to the entity list.
|
protected abstract void |
OortContainer.onItem(OortObject.Info<T> info,
Map<String,Object> data) |
|
protected void |
OortList.onItem(OortObject.Info<List<E>> info,
Map<String,Object> data) |
|
protected void |
OortMap.onItem(OortObject.Info<ConcurrentMap<K,V>> info,
Map<String,Object> data) |
|
void |
OortMap.EntryListener.Adapter.onPut(OortObject.Info<ConcurrentMap<K,V>> info,
OortMap.Entry<K,V> entry) |
|
void |
OortMap.EntryListener.onPut(OortObject.Info<ConcurrentMap<K,V>> info,
OortMap.Entry<K,V> entry) |
Callback method invoked after an entry is put into the entity map.
|
void |
OortList.DeltaListener.onRemoved(OortObject.Info<List<E>> info) |
|
void |
OortList.ElementListener.Adapter.onRemoved(OortObject.Info<List<E>> info,
List<E> elements) |
|
void |
OortList.ElementListener.onRemoved(OortObject.Info<List<E>> info,
List<E> elements) |
Callback method invoked when elements are removed from the entity list.
|
void |
OortMap.DeltaListener.onRemoved(OortObject.Info<ConcurrentMap<K,V>> info) |
|
void |
OortMap.EntryListener.Adapter.onRemoved(OortObject.Info<ConcurrentMap<K,V>> info,
OortMap.Entry<K,V> entry) |
|
void |
OortMap.EntryListener.onRemoved(OortObject.Info<ConcurrentMap<K,V>> info,
OortMap.Entry<K,V> entry) |
Callback method invoked after an entry is removed from the entity map.
|
void |
OortObject.Listener.Adapter.onRemoved(OortObject.Info<T> info) |
|
void |
OortObject.Listener.onRemoved(OortObject.Info<T> info) |
Callback method invoked when the object value is removed, for example
because the correspondent node has been shut down or crashed.
|
void |
OortList.DeltaListener.onUpdated(OortObject.Info<List<E>> oldInfo,
OortObject.Info<List<E>> newInfo) |
|
void |
OortMap.DeltaListener.onUpdated(OortObject.Info<ConcurrentMap<K,V>> oldInfo,
OortObject.Info<ConcurrentMap<K,V>> newInfo) |
|
void |
OortObject.Listener.Adapter.onUpdated(OortObject.Info<T> oldInfo,
OortObject.Info<T> newInfo) |
|
void |
OortObject.Listener.onUpdated(OortObject.Info<T> oldInfo,
OortObject.Info<T> newInfo) |
Callback method invoked when the object value is updated.
|