Changeset 223:92014ac5e10c for wokkel
- Timestamp:
- Oct 4, 2016, 9:40:42 AM (6 years ago)
- Branch:
- default
- hg-git-rename-source:
- git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wokkel/pubsub.py
r222 r223 914 914 915 915 916 def items(self, service, nodeIdentifier, maxItems=None, itemIdentifiers=None,917 subscriptionIdentifier=None, sender=None ):916 def items(self, service, nodeIdentifier, maxItems=None, 917 subscriptionIdentifier=None, sender=None, itemIdentifiers=None): 918 918 """ 919 919 Retrieve previously published items from a publish subscribe node. … … 927 927 @param maxItems: Optional limit on the number of retrieved items. 928 928 @type maxItems: L{int} 929 930 @param itemIdentifiers: Identifiers of the items to be retrieved.931 @type itemIdentifiers: C{set}932 929 933 930 @param subscriptionIdentifier: Optional subscription identifier. In … … 935 932 the results to the specific subscription. 936 933 @type subscriptionIdentifier: L{unicode} 934 935 @param itemIdentifiers: Identifiers of the items to be retrieved. 936 @type itemIdentifiers: L{set} of L{unicode} 937 937 """ 938 938 request = PubSubRequest('items')
Note: See TracChangeset
for help on using the changeset viewer.