public class LeafNode extends Node
Node.ItemDeleteTranslator, Node.ItemEventTranslator, Node.NodeConfigTranslatorcon, configEventToListenerMap, id, itemDeleteToListenerMap, itemEventToListenerMap, to| Modifier and Type | Method and Description |
|---|---|
void |
deleteAllItems()
Purges the node of all items.
|
void |
deleteItem(Collection<String> itemIds)
Delete the items with the specified id's from the node.
|
void |
deleteItem(String itemId)
Delete the item with the specified id from the node.
|
DiscoverItems |
discoverItems()
Get information on the items in the node in standard
DiscoverItems format. |
<T extends Item> |
getItems()
Get the current items stored in the node.
|
<T extends Item> |
getItems(Collection<String> ids)
Get the items specified from the node.
|
<T extends Item> |
getItems(int maxItems)
Get items persisted on the node, limited to the specified number.
|
<T extends Item> |
getItems(int maxItems,
String subscriptionId)
Get items persisted on the node, limited to the specified number
based on the subscription associated with the provided subscriptionId.
|
<T extends Item> |
getItems(String subscriptionId)
Get the current items stored in the node based
on the subscription associated with the provided
subscription id.
|
void |
publish()
Publishes an event to the node.
|
<T extends Item> |
publish(Collection<T> items)
Publishes multiple events to the node.
|
<T extends Item> |
publish(T item)
Publishes an event to the node.
|
void |
send()
Publishes an event to the node.
|
<T extends Item> |
send(Collection<T> items)
Publishes multiple events to the node.
|
<T extends Item> |
send(T item)
Publishes an event to the node.
|
addConfigurationListener, addItemDeleteListener, addItemEventListener, createPubsubPacket, createPubsubPacket, discoverInfo, getId, getNodeConfiguration, getSubscriptionOptions, getSubscriptionOptions, getSubscriptions, removeConfigurationListener, removeItemDeleteListener, removeItemEventListener, sendConfigurationForm, sendPubsubPacket, sendPubsubPacket, subscribe, subscribe, toString, unsubscribe, unsubscribepublic DiscoverItems discoverItems() throws XMPPException
DiscoverItems format.DiscoverItems formatXMPPExceptionpublic <T extends Item> List<T> getItems() throws XMPPException
Item in the nodeXMPPExceptionpublic <T extends Item> List<T> getItems(String subscriptionId) throws XMPPException
subscriptionId - - The subscription id for the
associated subscription.Item in the nodeXMPPExceptionpublic <T extends Item> List<T> getItems(Collection<String> ids) throws XMPPException
getItems() or an
event, that did not include the payload.ids - Item ids of the items to retrieveItem with payloadXMPPExceptionpublic <T extends Item> List<T> getItems(int maxItems) throws XMPPException
maxItems - Maximum number of items to returnItemXMPPExceptionpublic <T extends Item> List<T> getItems(int maxItems, String subscriptionId) throws XMPPException
maxItems - Maximum number of items to returnsubscriptionId - The subscription which the retrieval is based
on.ItemXMPPExceptionpublic void publish()
ConfigureForm.isPersistItems()=false
and ConfigureForm.isDeliverPayloads()=false.
This is an asynchronous call which returns as soon as the
packet has been sent.
For synchronous calls use send().public <T extends Item> void publish(T item)
send(), which
publishes an event with NO item.
This is an asynchronous call which returns as soon as the
packet has been sent.
For synchronous calls use send(Item)).item - - The item being sentpublic <T extends Item> void publish(Collection<T> items)
publish(Item).
In addition, if ConfigureForm.isPersistItems()=false, only the last item in the input
list will get stored on the node, assuming it stores the last sent item.
This is an asynchronous call which returns as soon as the
packet has been sent.
For synchronous calls use send(Collection)).items - - The collection of items being sentpublic void send()
throws XMPPException
ConfigureForm.isPersistItems()=false
and ConfigureForm.isDeliverPayloads()=false.
This is a synchronous call which will throw an exception
on failure.
For asynchronous calls, use publish().XMPPExceptionpublic <T extends Item> void send(T item) throws XMPPException
send(), which
publishes an event with NO item.
This is a synchronous call which will throw an exception
on failure.
For asynchronous calls, use publish(Item).item - - The item being sentXMPPExceptionpublic <T extends Item> void send(Collection<T> items) throws XMPPException
send(Item).
In addition, if ConfigureForm.isPersistItems()=false, only the last item in the input
list will get stored on the node, assuming it stores the last sent item.
This is a synchronous call which will throw an exception
on failure.
For asynchronous calls, use publish(Collection)).items - - The collection of Item objects being sentXMPPExceptionpublic void deleteAllItems()
throws XMPPException
Note: Some implementations may keep the last item sent.
XMPPExceptionpublic void deleteItem(String itemId) throws XMPPException
itemId - The id of the itemXMPPExceptionpublic void deleteItem(Collection<String> itemIds) throws XMPPException
itemIds - The list of id's of items to deleteXMPPExceptionCopyright © 2003-2007 Jive Software.