How to get a list of all defined signals

hi,

I need to get a list of all the signals defined in all the processes, but there is no table for this purpose in Flowable.
I think the list of signals and messages is obtained at runtime.
Is there a query to get the list of defined signals?

Thanks

Hi,

you can get list of current subscriptions to messages and signals from the runtime service.

    /**
     * Creates a new {@link EventSubscriptionQuery} instance, that can be used to query the event subscriptions.
     */
    EventSubscriptionQuery createEventSubscriptionQuery();

To get list of all possible signals/messages from definitions you have to get all definitions and parse them and after that filter all signals/messages.

Regards
Martin

1 Like