public interface FunctionalTestNotificationListener extends CustomNotificationListener
MuleContext.registerListener(ServerNotificationListener) You can receive FunctionalTestNotifications from the
FunctionalTestComponent.
This Notification contains the current MuleEventContext 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
FunctionalTestComponent. 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 ServerNotificationListenerCopyright © 2003–2017 MuleSoft, Inc.. All rights reserved.