org.mule.extras.spring.events
Interface MuleSubscriptionEventListener
- All Superinterfaces:
- MuleEventListener
- public interface MuleSubscriptionEventListener
- extends MuleEventListener
MuleSubscriptionEventListener
is a Spring ApplicationListener that is
used to register interest about Mule events.
The developer can supply an array of endpoints that it wishes to subscribe to. i.e.
new String[]{
"file/C:/dev/test/data",
"my.jms.queue",
"http://www.mycompaony.com/events"};
You can aslo specify logical endpoints that are configured on the Mule Server so you
can use more friendly names such as
new String[]{
"testData",
"OrdersJms",
"eventsHttp"};
By specifying '*' as the subscription, all events will be received by this listener.
- Version:
- $Revision: 1.3 $
- Author:
- Ross Mason
getSubscriptions
public java.lang.String[] getSubscriptions()
setSubscriptions
public void setSubscriptions(java.lang.String[] subscriptions)
Copyright © 2003-2005 SymphonySoft Limited. All Rights Reserved.