com.hazelcast.multimap.impl.txn.TransactionalMultiMapProxy Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2023, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.multimap.impl.txn;
import com.hazelcast.multimap.impl.MultiMapRecord;
import com.hazelcast.multimap.impl.MultiMapService;
import com.hazelcast.internal.serialization.Data;
import com.hazelcast.spi.impl.NodeEngine;
import com.hazelcast.transaction.TransactionException;
import com.hazelcast.transaction.impl.Transaction;
import java.util.ArrayList;
import java.util.Collection;
public class TransactionalMultiMapProxy extends TransactionalMultiMapProxySupport {
public TransactionalMultiMapProxy(NodeEngine nodeEngine, MultiMapService service, String name, Transaction tx) {
super(nodeEngine, service, name, tx);
}
@Override
public boolean put(K key, V value) throws TransactionException {
checkTransactionActive();
Data dataKey = getNodeEngine().toData(key);
Data dataValue = getNodeEngine().toData(value);
return putInternal(dataKey, dataValue);
}
@Override
public Collection get(K key) {
checkTransactionActive();
Data dataKey = getNodeEngine().toData(key);
Collection coll = getInternal(dataKey);
Collection collection = new ArrayList(coll.size());
for (MultiMapRecord record : coll) {
collection.add((V) toObjectIfNeeded(record.getObject()));
}
return collection;
}
@Override
public boolean remove(Object key, Object value) {
checkTransactionActive();
Data dataKey = getNodeEngine().toData(key);
Data dataValue = getNodeEngine().toData(value);
return removeInternal(dataKey, dataValue);
}
@Override
public Collection remove(Object key) {
checkTransactionActive();
Data dataKey = getNodeEngine().toData(key);
Collection coll = removeAllInternal(dataKey);
Collection result = new ArrayList(coll.size());
for (MultiMapRecord record : coll) {
result.add((V) toObjectIfNeeded(record.getObject()));
}
return result;
}
@Override
public int valueCount(K key) {
checkTransactionActive();
Data dataKey = getNodeEngine().toData(key);
return valueCountInternal(dataKey);
}
@Override
public String toString() {
return "TransactionalMultiMap{name=" + getName() + '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy