Class GridCacheAdapter.AsyncOp<T>
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.GridCacheAdapter.AsyncOp<T>
-
- Enclosing class:
- GridCacheAdapter<K,V>
protected abstract class GridCacheAdapter.AsyncOp<T> extends Object
Cache operation.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAsyncOp()protectedAsyncOp(Collection<?> keys)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description IgniteInternalFuture<T>op(GridNearTxLocal tx)abstract IgniteInternalFuture<T>op(GridNearTxLocal tx, AffinityTopologyVersion readyTopVer)
-
-
-
Constructor Detail
-
AsyncOp
protected AsyncOp()
-
AsyncOp
protected AsyncOp(Collection<?> keys)
- Parameters:
keys- Keys involved.
-
-
Method Detail
-
op
public abstract IgniteInternalFuture<T> op(GridNearTxLocal tx, AffinityTopologyVersion readyTopVer)
- Parameters:
tx- Transaction.readyTopVer- Ready topology version.- Returns:
- Operation future.
-
op
public IgniteInternalFuture<T> op(GridNearTxLocal tx)
- Parameters:
tx- Transaction.- Returns:
- Operation future.
-
-