Class CopyOnWriteMapOperations<K,V>
- java.lang.Object
-
- org.wildfly.clustering.ee.cache.function.CopyOnWriteMapOperations<K,V>
-
- Type Parameters:
K- the map key typeV- the map value type
- All Implemented Interfaces:
Function<Map<K,V>,Map<K,V>>,Supplier<Map<K,V>>,UnaryOperator<Map<K,V>>,Operations<Map<K,V>>
public class CopyOnWriteMapOperations<K,V> extends Object implements Operations<Map<K,V>>
Defines operations for creating and copying a non-concurrent map. A non-concurrent map must perform writes against a copy, thus the underlying map need not be concurrent.- Author:
- Paul Ferraro
-
-
Constructor Summary
Constructors Constructor Description CopyOnWriteMapOperations()
-