public interface FunctionalTestNotificationListener extends org.mule.runtime.api.notification.CustomNotificationListener<FunctionalTestNotification>
NotificationListenerRegistry.registerListener(NotificationListener) You can receive
FunctionalTestNotifications from the FunctionalTestProcessor.
This Notification contains the current CoreEvent, 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() |
Copyright © 2003–2018 MuleSoft, Inc.. All rights reserved.