Uses of Interface
de.quantummaid.eventmaid.filtering.Filter
-
Packages that use Filter Package Description de.quantummaid.eventmaid.channel de.quantummaid.eventmaid.channel.internal.filtering de.quantummaid.eventmaid.messagebus -
-
Uses of Filter in de.quantummaid.eventmaid.channel
Methods in de.quantummaid.eventmaid.channel that return types with arguments of type Filter Modifier and Type Method Description List<Filter<ProcessingContext<T>>>Channel. getPostFilter()Returns a list of allFilterregistered in the post list.List<Filter<ProcessingContext<T>>>Channel. getPreFilter()Returns a list of allFilterregistered in the pre list.List<Filter<ProcessingContext<T>>>Channel. getProcessFilter()Returns a list of allFilterregistered in the process list.Methods in de.quantummaid.eventmaid.channel with parameters of type Filter Modifier and Type Method Description voidChannel. addPostFilter(Filter<ProcessingContext<T>> filter)Adds theFilterto the list of postFilter.voidChannel. addPostFilter(Filter<ProcessingContext<T>> filter, int position)Adds theFilterat the given position to the list of postFilter.voidChannel. addPreFilter(Filter<ProcessingContext<T>> filter)Adds theFilterto the list of preFilter.voidChannel. addPreFilter(Filter<ProcessingContext<T>> filter, int position)Adds theFilterat the given position to the list of preFilter.voidChannel. addProcessFilter(Filter<ProcessingContext<T>> filter)Adds theFilterto the list of processFilter.voidChannel. addProcessFilter(Filter<ProcessingContext<T>> filter, int position)Adds theFilterat the given position to the list of processFilter.voidChannel. removePostFilter(Filter<ProcessingContext<T>> filter)Removes theFilterfrom the post list.voidChannel. removePreFilter(Filter<ProcessingContext<T>> filter)Removes theFilterfrom the pre list.voidChannel. removeProcessFilter(Filter<ProcessingContext<T>> filter)Removes theFilterfrom the process list. -
Uses of Filter in de.quantummaid.eventmaid.channel.internal.filtering
Method parameters in de.quantummaid.eventmaid.channel.internal.filtering with type arguments of type Filter Modifier and Type Method Description voidFilterApplier. applyAll(T message, List<Filter<T>> filters, PostFilterActions<T> postFilterActions)voidFilterApplierImpl. applyAll(T message, List<Filter<T>> filters, PostFilterActions<T> postFilterActions) -
Uses of Filter in de.quantummaid.eventmaid.messagebus
Methods in de.quantummaid.eventmaid.messagebus that return types with arguments of type Filter Modifier and Type Method Description List<Filter<Object>>MessageBus. getFilter()Returns all currently addedFilters.Methods in de.quantummaid.eventmaid.messagebus with parameters of type Filter Modifier and Type Method Description voidMessageBus. add(Filter<Object> filter)voidMessageBus. add(Filter<Object> filter, int position)voidMessageBus. addRaw(Filter<ProcessingContext<Object>> filter)voidMessageBus. addRaw(Filter<ProcessingContext<Object>> filter, int position)voidMessageBus. remove(Filter<Object> filter)Removes the givenFilter.
-