Uses of Interface
net.sourceforge.hiveevents.Consumer

Packages that use Consumer
net.sourceforge.hiveevents This package contains all necessary classes to handle general event channels. 
net.sourceforge.hivegui.table This package contains classes that manage tables in HiveGUI. 
net.sourceforge.hiveutils.service.impl This package contains a few useful HiveMind services and classes, some used by hivetranse.core module. 
 

Uses of Consumer in net.sourceforge.hiveevents
 

Subinterfaces of Consumer in net.sourceforge.hiveevents
 interface Channel<T>
          General Event Channel interface.
 interface PersistentConsumer<T>
          Special marker interface for push consumer that need to indicate to an Event Channel that they should be made "persistent" by the Channel (by keeping a strong reference to them).
 

Classes in net.sourceforge.hiveevents that implement Consumer
 class ChannelImpl<T>
          Thread-unsafe implementation of an Event Channel.
 class SyncChannelImpl<T>
          Thread-safe implementation of an Event Channel.
 

Methods in net.sourceforge.hiveevents with parameters of type Consumer
 int ChannelImpl.registerPushConsumer(int priority, Consumer<T> consumer)
           
 int Channel.registerPushConsumer(int priority, Consumer<T> consumer)
          Registers a push-consumer to this Channel.
 int SyncChannelImpl.registerPushConsumer(int priority, Filter<T> filter, Consumer<T> consumer)
           
 int ChannelImpl.registerPushConsumer(int priority, Filter<T> filter, Consumer<T> consumer)
           
 int Channel.registerPushConsumer(int priority, Filter<T> filter, Consumer<T> consumer)
          Registers a push-consumer to this Channel.
 

Uses of Consumer in net.sourceforge.hivegui.table
 

Methods in net.sourceforge.hivegui.table with parameters of type Consumer
 void TableSelectionHandler.addSelectionConsumer(int priority, Consumer consumer)
           
 void BeanTable.addSelectionConsumer(int priority, Consumer consumer)
           
 

Uses of Consumer in net.sourceforge.hiveutils.service.impl
 

Methods in net.sourceforge.hiveutils.service.impl that return Consumer
 Consumer PreferenceContribution.getEventChannel()
           
 

Methods in net.sourceforge.hiveutils.service.impl with parameters of type Consumer
 void PreferenceContribution.setEventChannel(Consumer eventChannel)