use of com.hazelcast.collection.impl.collection.CollectionContainer in project hazelcast by hazelcast.
the class CollectionClearOperation method run.
@Override
public void run() throws Exception {
CollectionContainer collectionContainer = getOrCreateContainer();
itemIdMap = collectionContainer.clear();
}
use of com.hazelcast.collection.impl.collection.CollectionContainer in project hazelcast by hazelcast.
the class CollectionTxnAddOperation method run.
@Override
public void run() throws Exception {
CollectionContainer collectionContainer = getOrCreateContainer();
collectionContainer.commitAdd(itemId, value);
response = true;
}
use of com.hazelcast.collection.impl.collection.CollectionContainer in project hazelcast by hazelcast.
the class CollectionTxnRemoveBackupOperation method run.
@Override
public void run() throws Exception {
CollectionContainer collectionContainer = getOrCreateContainer();
collectionContainer.commitRemoveBackup(itemId);
}
use of com.hazelcast.collection.impl.collection.CollectionContainer in project hazelcast by hazelcast.
the class CollectionReserveRemoveOperation method run.
@Override
public void run() throws Exception {
CollectionContainer collectionContainer = getOrCreateContainer();
response = collectionContainer.reserveRemove(reservedItemId, value, transactionId);
}
Aggregations