io.sarl.lang.core.util
Class NoConcurrencyCollectionFactory
All Superinterfaces:
ConcurrentCollectionFactory
class NoConcurrencyCollectionFactory
extends java.lang.Object
implements ConcurrentCollectionFactory
Factory of collections that are not thread-safe.
Maven Group Identifier:
io.sarl.lang
Maven Artifact Identifier:
core
Since:
0.12
See:
DefaultConcurrentCollectionFactory
Constructor Summary
Constructor and description
new
Constructor.
Action Summary
Constructor Details
new
new
Constructor.
Action Details
newCollection
def newCollection : ConcurrentCollection<T>

with T

newCollection(Collection<E>)
def newCollection(Collection<E>) : ConcurrentCollection<T>

with T

newList
def newList : ConcurrentList<T>

with T

newList(List<E>)
def newList(List<E>) : ConcurrentList<T>

with T

newMap(Comparator<T>)
def newMap(Comparator<T>) : java.util.concurrent.ConcurrentMap<K,V>

with K, V

newMap(Comparator<T>,Map<K,V>)
def newMap(Comparator<T>,Map<K,V>) : java.util.concurrent.ConcurrentMap<K,V>

with K, V

newSet(Comparator<T>)
def newSet(Comparator<T>) : ConcurrentSet<T>

with T

newSet(Comparator<T>,Collection<E>)
def newSet(Comparator<T>,Collection<E>) : ConcurrentSet<T>

with T