public interface FunctionalTestNotificationListener extends CustomNotificationListener<FunctionalTestNotification>
NotificationListenerRegistry.registerListener(NotificationListener) You can receive
FunctionalTestNotifications from the FunctionalTestProcessor.
This Notification contains the current InternalEvent, FlowConstruct and reply message. The resource identifier for this
event is the service name that received the message. This means you can register to listen to Notifications from a selected
FunctionalTestProcessor. i.e.
muleContext.registerListener(this, "*JmsTestCompoennt");
This registration would only receive FunctionalTestNotification objects from components called 'MyJmsTestComponent' and
'YourJmsTestComponent' but not 'HerFileTestComponent'.
To receive all notifications simply do -
muleContext.registerListener(this");
| Modifier and Type | Method and Description |
|---|---|
default boolean |
isBlocking() |
onNotificationdefault boolean isBlocking()
isBlocking in interface NotificationListener<CustomNotification>Copyright © 2003–2017 MuleSoft, Inc.. All rights reserved.