Uses of Class
org.jivesoftware.smackx.pubsub.Item

Packages that use Item
org.jivesoftware.smackx.pubsub   
org.jivesoftware.smackx.pubsub.listener   
 

Uses of Item in org.jivesoftware.smackx.pubsub
 

Classes in org.jivesoftware.smackx.pubsub with type parameters of type Item
 class ItemPublishEvent<T extends Item>
          Represents an event generated by an item(s) being published to a node.
 class PublishItem<T extends Item>
          Represents a request to publish an item(s) to a specific node.
 

Subclasses of Item in org.jivesoftware.smackx.pubsub
 class PayloadItem<E extends PacketExtension>
          This class represents an item that has been, or will be published to a pubsub node.
 

Methods in org.jivesoftware.smackx.pubsub with type parameters of type Item
<T extends Item>
java.util.List<T>
LeafNode.getItems()
          Get the current items stored in the node.
<T extends Item>
java.util.List<T>
LeafNode.getItems(java.util.Collection<java.lang.String> ids)
          Get the items specified from the node.
<T extends Item>
java.util.List<T>
LeafNode.getItems(int maxItems)
          Get items persisted on the node, limited to the specified number.
<T extends Item>
java.util.List<T>
LeafNode.getItems(int maxItems, java.lang.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>
java.util.List<T>
LeafNode.getItems(java.lang.String subscriptionId)
          Get the current items stored in the node based on the subscription associated with the provided subscription id.
<T extends Item>
void
LeafNode.publish(java.util.Collection<T> items)
          Publishes multiple events to the node.
<T extends Item>
void
LeafNode.publish(T item)
          Publishes an event to the node.
<T extends Item>
void
LeafNode.send(java.util.Collection<T> items)
          Publishes multiple events to the node.
<T extends Item>
void
LeafNode.send(T item)
          Publishes an event to the node.
 

Uses of Item in org.jivesoftware.smackx.pubsub.listener
 

Classes in org.jivesoftware.smackx.pubsub.listener with type parameters of type Item
 interface ItemEventListener<T extends Item>
          Defines the listener for items being published to a node.