From 32a4b4ea5a25712fb616c64e3a20e44369d1b569 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 27 Jul 2021 08:49:28 +0300 Subject: [PATCH] javadocs updated --- redisson/src/main/java/org/redisson/api/MapOptions.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/redisson/src/main/java/org/redisson/api/MapOptions.java b/redisson/src/main/java/org/redisson/api/MapOptions.java index 49f41607a..6c62ca9b2 100644 --- a/redisson/src/main/java/org/redisson/api/MapOptions.java +++ b/redisson/src/main/java/org/redisson/api/MapOptions.java @@ -92,7 +92,7 @@ public class MapOptions { /** * Sets write behind tasks batch size. - * During MapWriter methods execution all updates accumulated into a batch of specified size. + * All updates accumulated into a batch of specified size and written with {@link MapWriter}. *

* Default is 50 * @@ -108,7 +108,8 @@ public class MapOptions { } /** - * Sets write behind tasks execution delay. All updates would be applied with lag not more than specified delay. + * Sets write behind tasks execution delay. + * All updates written with {@link MapWriter} and lag not more than specified delay. *

* Default is 1000 milliseconds *