Uses of Class
org.apache.mina.util.LazyInitializer
-
Packages that use LazyInitializer Package Description org.apache.mina.filter.buffer org.apache.mina.util Miscellaneous utility classes -
-
Uses of LazyInitializer in org.apache.mina.filter.buffer
Subclasses of LazyInitializer in org.apache.mina.filter.buffer Modifier and Type Class Description class
IoBufferLazyInitializer
AnLazyInitializer
implementation that initializes anIoBuffer
only when needed. -
Uses of LazyInitializer in org.apache.mina.util
Subclasses of LazyInitializer in org.apache.mina.util Modifier and Type Class Description class
LazyInitializedCacheMap.NoopInitializer
This class provides a noopLazyInitializer
meaning it will return the same object it received when instantiated.Methods in org.apache.mina.util that return types with arguments of type LazyInitializer Modifier and Type Method Description Collection<LazyInitializer<V>>
LazyInitializedCacheMap. getValues()
Methods in org.apache.mina.util with parameters of type LazyInitializer Modifier and Type Method Description V
LazyInitializedCacheMap. putIfAbsent(K key, LazyInitializer<V> value)
If the specified key is not already associated with a value, associate it with the given value.Constructor parameters in org.apache.mina.util with type arguments of type LazyInitializer Constructor Description LazyInitializedCacheMap(ConcurrentHashMap<K,LazyInitializer<V>> map)
This constructor allows to provide a fine tunedConcurrentHashMap
to stick with each special case the user needs.
-