Interface EventSubscription
-
public interface EventSubscriptionThe event subscription component is in charge of publishing the events consumed from ACS to other channels. In order to do that, it makes use of instances ofSubscriptionPublisher.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default List<EventFilter>getEventFilters()Get the list ofEventFilterthat applies to the event subscription.default voidrelease()Method invoked when the publication resources must be released.
-
-
-
Method Detail
-
getEventFilters
default List<EventFilter> getEventFilters()
Get the list ofEventFilterthat applies to the event subscription. Defaulted to an empty list.- Returns:
- the list of
EventFilter
-
release
default void release()
Method invoked when the publication resources must be released.
-
-