Hi! Does the an event Listener, which implements the ClientLifecycleEventListener block processing or does it run asynchronously?
My problem:
I have an extension with a SimpleAuthentificator, which authenticates the certificates in the onConnect() method, this extension has the highest priority.
Then a second extension with an Authorizer, which implements PublishInboundInterceptor and SubscriptionAuthorizer, which prohibits/allows subscribing to a topic.
A third extension is to implement an ClientLifecycleEventListener, which has another task when a connection is successfully established, it overrides
onAuthenticationSuccessful()
Will this 3. extension with the ClientLifecycleEventListener block further extensions, especially the 2. extension, or will the other extensions run asynchronously?