Uses of Interface
org.agrona.collections.IntObjConsumer
-
Packages that use IntObjConsumer Package Description org.agrona.collections Collections classes that support primitive types and tend to be cache friendly.org.agrona.concurrent.status Counters for indicating status and telemetry which can be put in shared memory for live inspection. -
-
Uses of IntObjConsumer in org.agrona.collections
Methods in org.agrona.collections with parameters of type IntObjConsumer Modifier and Type Method Description void
Int2ObjectCache. forEachInt(IntObjConsumer<? super V> consumer)
Implementation of theInt2ObjectCache.forEach(BiConsumer)
that avoids boxing of keys.void
Int2ObjectHashMap. forEachInt(IntObjConsumer<V> consumer)
Primitive specialised implementation ofMap.forEach(BiConsumer)
.void
Int2ObjectHashMap. intForEach(IntObjConsumer<V> consumer)
Deprecated.UseInt2ObjectHashMap.forEachInt(IntObjConsumer)
instead. -
Uses of IntObjConsumer in org.agrona.concurrent.status
Methods in org.agrona.concurrent.status with parameters of type IntObjConsumer Modifier and Type Method Description void
CountersReader. forEach(IntObjConsumer<java.lang.String> consumer)
Iterate over all labels in the label buffer.
-