RExpirable added

pull/243/head
Nikita 10 years ago
parent 7b4371ab7c
commit 6ec833973a

@ -24,7 +24,7 @@ import java.util.List;
*
* @param <V> the type of elements held in this collection
*/
public interface RList<V> extends List<V>, RListAsync<V> {
public interface RList<V> extends List<V>, RExpirable, RListAsync<V> {
void fastSet(int index, V element);

@ -28,7 +28,7 @@ import java.util.concurrent.ConcurrentMap;
* @param <K> key
* @param <V> value
*/
public interface RMap<K, V> extends ConcurrentMap<K, V>, RMapAsync<K, V> {
public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K, V> {
/**
* Atomically adds the given <code>delta</code> to the current value

Loading…
Cancel
Save