|
|
@ -16,6 +16,7 @@
|
|
|
|
package org.redisson.core;
|
|
|
|
package org.redisson.core;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
|
|
import java.util.RandomAccess;
|
|
|
|
|
|
|
|
|
|
|
|
import io.netty.util.concurrent.Future;
|
|
|
|
import io.netty.util.concurrent.Future;
|
|
|
|
|
|
|
|
|
|
|
@ -26,7 +27,7 @@ import io.netty.util.concurrent.Future;
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param <V> the type of elements held in this collection
|
|
|
|
* @param <V> the type of elements held in this collection
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public interface RListAsync<V> extends RCollectionAsync<V> {
|
|
|
|
public interface RListAsync<V> extends RCollectionAsync<V>, RandomAccess {
|
|
|
|
|
|
|
|
|
|
|
|
Future<Boolean> addAllAsync(int index, Collection<? extends V> coll);
|
|
|
|
Future<Boolean> addAllAsync(int index, Collection<? extends V> coll);
|
|
|
|
|
|
|
|
|
|
|
|