Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hazelcast/proxy/map.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def add_entry_listener(self, include_value=False, key=None, predicate=None, adde
Adds a continuous entry listener for this map. Listener will get notified for map events filtered with given
parameters.

:param include_value: (bool), whether received events include an old value or not (optional).
:param include_value: (bool), whether received event should include the value or not (optional).
:param key: (object), key for filtering the events (optional).
:param predicate: (Predicate), predicate for filtering the events (optional).
:param added_func: Function to be called when an entry is added to map (optional).
Expand Down
2 changes: 1 addition & 1 deletion hazelcast/proxy/multi_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def add_entry_listener(self, include_value=False, key=None, added_func=None, rem
Adds an entry listener for this multimap. The listener will be notified for all multimap add/remove/clear-all
events.

:param include_value: (bool), whether received events include an old value or not (optional).
:param include_value: (bool), whether received event should include the value or not (optional).
:param key: (object), key for filtering the events (optional).
:param added_func: Function to be called when an entry is added to map (optional).
:param removed_func: Function to be called when an entry is removed_func from map (optional).
Expand Down