Uses of Interface
net.sourceforge.hiveevents.Filter

Packages that use Filter
net.sourceforge.hiveevents This package contains all necessary classes to handle general event channels. 
 

Uses of Filter in net.sourceforge.hiveevents
 

Classes in net.sourceforge.hiveevents that implement Filter
 class ConstraintFilter<T>
          Event filter that is based on a constraint expressed in a specific language, OCL (Object Constraint Language).
 class FiltersChain<T>
          Chain of event filters.
 class PassAllFilter<T>
          Dummy filter that lets ANY event pass.
 

Fields in net.sourceforge.hiveevents declared as Filter
protected  Filter<T> ChannelImpl.AbstractConsumerInfo._filter
           
 

Methods in net.sourceforge.hiveevents that return Filter
static
<T> Filter<T>
FiltersChain.create(Filter<T>... filters)
          Create a chain of filters.
 

Methods in net.sourceforge.hiveevents with parameters of type Filter
 void FiltersChain.addFilter(Filter<T> filter)
          Add a filter at the end of the chain.
static
<T> Filter<T>
FiltersChain.create(Filter<T>... filters)
          Create a chain of filters.
 int SyncChannelImpl.registerPullConsumer(Filter<T> filter)
           
 int ChannelImpl.registerPullConsumer(Filter<T> filter)
           
 int Channel.registerPullConsumer(Filter<T> filter)
          Registers a pull-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.
 

Constructors in net.sourceforge.hiveevents with parameters of type Filter
ChannelImpl.AbstractConsumerInfo(int id, int priority, Filter<T> filter)