javadocs fixed

pull/748/head
Nikita 8 years ago
parent c44cd0b6ff
commit ef6a248d60

@ -46,7 +46,7 @@ public interface NodesGroup<N extends Node> {
* Get Redis node by address in format: <code>host:port</code>
*
* @param address
* @return
* @return node
*/
N getNode(String address);

@ -42,6 +42,7 @@ public interface RDelayedQueue<V> extends RQueue<V>, RDestroyable {
* @param e the element to add
* @param delay for transition
* @param timeUnit for delay
* @return void
*/
RFuture<Void> offerAsync(V e, long delay, TimeUnit timeUnit);

@ -19,7 +19,7 @@ import java.util.concurrent.TimeUnit;
/**
* <p>Map-based cache with ability to set TTL for each entry via
* {@link #put(Object, Object, long, TimeUnit)} or {@link #putIfAbsent(Object, Object, long, TimeUnit)}
* {@link RMapCache#put(Object, Object, long, TimeUnit)} or {@link RMapCache#putIfAbsent(Object, Object, long, TimeUnit)}
* And therefore has an complex lua-scripts inside.</p>
*
* <p>Current redis implementation doesnt have map entry eviction functionality.

@ -22,6 +22,7 @@ import java.util.List;
*
* @author Nikita Koksharov
*
* @param <V> object type
*/
public interface RSortable<V> extends RSortableAsync<V> {
@ -65,7 +66,8 @@ public interface RSortable<V> extends RSortableAsync<V> {
/**
* Read data in sorted view
*
*
* @param <T> object type
* @param byPattern that is used to generate the keys that are used for sorting
* @param getPatterns that is used to load values by keys in sorted view
* @param order for sorted data
@ -76,6 +78,7 @@ public interface RSortable<V> extends RSortableAsync<V> {
/**
* Read data in sorted view
*
* @param <T> object type
* @param byPattern that is used to generate the keys that are used for sorting
* @param getPatterns that is used to load values by keys in sorted view
* @param order for sorted data

@ -21,7 +21,8 @@ import java.util.List;
/**
*
* @author Nikita Koksharov
*
*
* @param <V> object type
*/
public interface RSortableAsync<V> {
@ -66,6 +67,7 @@ public interface RSortableAsync<V> {
/**
* Read data in sorted view
*
* @param <T> object type
* @param byPattern that is used to generate the keys that are used for sorting
* @param getPatterns that is used to load values by keys in sorted view
* @param order for sorted data
@ -76,6 +78,7 @@ public interface RSortableAsync<V> {
/**
* Read data in sorted view
*
* @param <T> object type
* @param byPattern that is used to generate the keys that are used for sorting
* @param getPatterns that is used to load values by keys in sorted view
* @param order for sorted data

Loading…
Cancel
Save