summaryrefslogtreecommitdiff
path: root/src/apscheduler/eventbrokers/redis.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/apscheduler/eventbrokers/redis.py')
-rw-r--r--src/apscheduler/eventbrokers/redis.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/apscheduler/eventbrokers/redis.py b/src/apscheduler/eventbrokers/redis.py
index 8f6c2c3..6683276 100644
--- a/src/apscheduler/eventbrokers/redis.py
+++ b/src/apscheduler/eventbrokers/redis.py
@@ -27,8 +27,9 @@ class RedisEventBroker(LocalEventBroker, DistributedEventBrokerMixin):
:param client: a (synchronous) Redis client
:param serializer: the serializer used to (de)serialize events for transport
:param channel: channel on which to send the messages
- :param stop_check_interval: interval on which to poll for new messages (higher
- values mean slower reaction time but less CPU use)
+ :param stop_check_interval: interval (in seconds) on which the channel listener
+ should check if it should stop (higher values mean slower reaction time but less
+ CPU use)
"""
client: Redis | RedisCluster