Searched refs:createPubsubPacket (Results 1 – 3 of 3) sorted by relevance
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
D | LeafNode.java | 69 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId())); in getItems() 90 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId)); in getItems() 119 …PubSub request = createPubsubPacket(Type.GET, new ItemsExtension(ItemsExtension.ItemsElementType.i… in getItems() 138 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), maxItems)); in getItems() 160 …PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId, maxItem… in getItems() 181 …PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())… in publish() 223 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); in publish() 245 …PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())… in send() 297 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); in send() 313 …PubSub request = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PURGE_OWNER, get… in deleteAllItems() [all …]
|
D | PubSubManager.java | 122 …PubSub request = createPubsubPacket(to, Type.SET, new NodeExtension(PubSubElementType.CREATE, name… in createNode() 285 static PubSub createPubsubPacket(String to, Type type, PacketExtension ext) in createPubsubPacket() method in PubSubManager 287 return createPubsubPacket(to, type, ext, null); in createPubsubPacket() 290 static PubSub createPubsubPacket(String to, Type type, PacketExtension ext, PubSubNamespace ns) in createPubsubPacket() method in PubSubManager 314 return SyncPacketSend.getReply(con, createPubsubPacket(to, type, ext, ns)); in sendPubsubPacket()
|
D | Node.java | 114 …PubSub packet = createPubsubPacket(Type.SET, new FormNode(FormNodeType.CONFIGURE_OWNER, getId(), s… in sendConfigurationForm() 190 PubSub request = createPubsubPacket(Type.SET, new SubscribeExtension(jid, getId())); in subscribe() 346 protected PubSub createPubsubPacket(Type type, PacketExtension ext) in createPubsubPacket() method in Node 348 return createPubsubPacket(type, ext, null); in createPubsubPacket() 351 protected PubSub createPubsubPacket(Type type, PacketExtension ext, PubSubNamespace ns) in createPubsubPacket() method in Node 353 return PubSubManager.createPubsubPacket(to, type, ext, ns); in createPubsubPacket()
|