From 1a5ddf266736c004a03c4382088a4d1eaf14c3e4 Mon Sep 17 00:00:00 2001 From: mdumandag Date: Tue, 5 Mar 2019 16:46:06 +0300 Subject: [PATCH] update add_entry_listener documentation --- hazelcast/proxy/map.py | 2 +- hazelcast/proxy/multi_map.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hazelcast/proxy/map.py b/hazelcast/proxy/map.py index b80ee82c46..aa2fa9dfbe 100644 --- a/hazelcast/proxy/map.py +++ b/hazelcast/proxy/map.py @@ -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). diff --git a/hazelcast/proxy/multi_map.py b/hazelcast/proxy/multi_map.py index b0430321e6..7c579d5ef3 100644 --- a/hazelcast/proxy/multi_map.py +++ b/hazelcast/proxy/multi_map.py @@ -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).