/*
* Copyright 2015 Terracotta, Inc., a Software AG company.
*
* 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 org.terracotta.offheapstore;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.function.BiFunction;
import java.util.function.Function;
import org.terracotta.offheapstore.concurrent.AbstractConcurrentOffHeapMap;
Implemented by maps that can be used as segments in a concurrent map.
Author: Chris Dennis See Also: - AbstractConcurrentOffHeapMap
/**
* Implemented by maps that can be used as segments in a concurrent map.
*
* @see AbstractConcurrentOffHeapMap
* @author Chris Dennis
*/
public interface Segment<K, V> extends ConcurrentMap<K, V>, MapInternals, ReadWriteLock, HashingMap<K, V> {
See OffHeapHashMap.fill(Object, Object)
for a detailed description. Params: - key – key with which the specified value is to be associated
- value – value to be associated with the specified key
Returns: the previous value associated with key, or
null if there was no mapping for key
(irrespective of whether the value was successfully installed).
/**
* See {@link OffHeapHashMap#fill(Object, Object)} for a detailed description.
*
* @param key key with which the specified value is to be associated
* @param value value to be associated with the specified key
* @return the previous value associated with <var>key</var>, or
* <var>null</var> if there was no mapping for <var>key</var>
* (irrespective of whether the value was successfully installed).
*/
V fill(K key, V value);
V fill(K key, V value, int metadata);
V put(K key, V value, int metadata);
Integer getMetadata(K key, int mask);
Integer getAndSetMetadata(K key, int mask, int values);
V getValueAndSetMetadata(K key, int mask, int values);
Return the ReentrantReadWriteLock
used by this segment. Throws: - UnsupportedOperationException – if this segment does not use a RRWL
Returns: RRWL for this segment
/**
* Return the {@code ReentrantReadWriteLock} used by this segment.
*
* @return RRWL for this segment
* @throws UnsupportedOperationException if this segment does not use a RRWL
*/
ReentrantReadWriteLock getLock() throws UnsupportedOperationException;
boolean removeNoReturn(Object key);
void destroy();
boolean shrink();
/*
* JDK-8-alike metadata methods
*/
MetadataTuple<V> computeWithMetadata(K key, BiFunction<? super K, ? super MetadataTuple<V>, ? extends MetadataTuple<V>> remappingFunction);
MetadataTuple<V> computeIfAbsentWithMetadata(K key, Function<? super K,? extends MetadataTuple<V>> mappingFunction);
MetadataTuple<V> computeIfPresentWithMetadata(K key, BiFunction<? super K,? super MetadataTuple<V>,? extends MetadataTuple<V>> remappingFunction);
}