Uses of Interface
net.openhft.koloboke.function.ByteConsumer

Packages that use ByteConsumer
net.openhft.koloboke.collect The root package of the collection library. 
net.openhft.koloboke.collect.set Contains interfaces of Set specializations and their factories. 
net.openhft.koloboke.collect.set.hash Contains interfaces of Set specializations, based on hash tables, their factories and static factory methods. 
 

Uses of ByteConsumer in net.openhft.koloboke.collect
 

Methods in net.openhft.koloboke.collect with parameters of type ByteConsumer
 void ByteCollection.forEach(ByteConsumer action)
          Performs the given action for each element of this collection until all elements have been processed or the action throws an exception.
 void ByteCursor.forEachForward(ByteConsumer action)
          Performs the given action for each element of the iteration after the cursor in forward direction until all elements have been processed or the action throws an exception.
 void ByteIterator.forEachRemaining(ByteConsumer action)
          Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
 

Uses of ByteConsumer in net.openhft.koloboke.collect.set
 

Method parameters in net.openhft.koloboke.collect.set with type arguments of type ByteConsumer
 ByteSet ByteSetFactory.newImmutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 ByteSet ByteSetFactory.newImmutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 ByteSet ByteSetFactory.newMutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 ByteSet ByteSetFactory.newMutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 ByteSet ByteSetFactory.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 ByteSet ByteSetFactory.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 

Uses of ByteConsumer in net.openhft.koloboke.collect.set.hash
 

Method parameters in net.openhft.koloboke.collect.set.hash with type arguments of type ByteConsumer
 HashByteSet HashByteSetFactory.newImmutableSet(Consumer<ByteConsumer> elementsSupplier)
           
static HashByteSet HashByteSets.newImmutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashByteSet HashByteSetFactory.newImmutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
           
static HashByteSet HashByteSets.newImmutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashByteSet HashByteSetFactory.newMutableSet(Consumer<ByteConsumer> elementsSupplier)
           
static HashByteSet HashByteSets.newMutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashByteSet HashByteSetFactory.newMutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
           
static HashByteSet HashByteSets.newMutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashByteSet HashByteSetFactory.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier)
           
static HashByteSet HashByteSets.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 HashByteSet HashByteSetFactory.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
           
static HashByteSet HashByteSets.newUpdatableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.