FilteringHandler

public class FilteringHandler implements Handler

A decorator for Handlers that allows additional filtering for each handler. Filters are a conjunction, hence one failure prevents delivery.

Author

jwienke

Constructors

FilteringHandler

public FilteringHandler(Handler decorated, Filter filter)

Creates a filtering handler that wraps another handler and takes one additional filter.

Parameters
  • decorated – handler to wrap and call if filter matches

  • filter – the additional filter to apply

FilteringHandler

public FilteringHandler(Handler decorated, Set<Filter> filters)

Creates a filtering handler that wraps another handler and takes a set of filters to apply.

Parameters
  • decorated – handler to wrap and call if filter matches

  • filters – the additional filters to apply

Methods

internalNotify

public void internalNotify(Event event)