Problem
Event subscribers want to receive only events they are interested in. They don't want to be overloaded with unwanted events. They also don't know what to do when they don't want an event (return an error?)
Persona:
Event consumer
Exit Criteria
An event subscriber does not receive events when their content matches a certain condition and vice versa.
Time Estimate (optional):
1-2 days?
Additional context (optional)
One possible way to solve this is to implement a new kind of channel, called Filter.
Another way is to extend the in-memory channel with filtering
Either way should work with Pipeline
Problem
Event subscribers want to receive only events they are interested in. They don't want to be overloaded with unwanted events. They also don't know what to do when they don't want an event (return an error?)
Persona:
Event consumer
Exit Criteria
An event subscriber does not receive events when their content matches a certain condition and vice versa.
Time Estimate (optional):
1-2 days?
Additional context (optional)
One possible way to solve this is to implement a new kind of channel, called
Filter.Another way is to extend the in-memory channel with filtering
Either way should work with
Pipeline