Package org.apache.airavata.workflow.tracking.impl.subscription

Examples of org.apache.airavata.workflow.tracking.impl.subscription.MessageBoxNotificationHandler


     */
    public static Subscription startListeningToSavedSubscription(String brokerLocation, EndpointReference msgBoxAddrs,
            String SubscriptionID, String topic, String xpath, Callback callback, boolean subscribePermanatly)
            throws Exception {

        return new MessageBoxNotificationHandler(msgBoxAddrs.getAddress(), brokerLocation)
                .startListeningToPreviousMessageBox(msgBoxAddrs, SubscriptionID, topic, xpath, callback,
                        subscribePermanatly);
    }
View Full Code Here


     */
    public static Subscription renewMessageboxSubscription(String messageBoxUrl, String brokerLocation,
            String eprOfMessageBox, String SubscriptionID, String topic, String xpath, boolean subscribePermanatly)
            throws Exception {

        return new MessageBoxNotificationHandler(messageBoxUrl, brokerLocation).renewMessageboxSubscription(
                eprOfMessageBox, SubscriptionID, topic, xpath, subscribePermanatly);
    }
View Full Code Here

    }

    public static Subscription renewMessageboxSubscription(String brokerLocation, EndpointReference eprOfMessageBox,
            String SubscriptionID, String topic, String xpath, boolean subscribePermanatly) throws Exception {

        return new MessageBoxNotificationHandler(eprOfMessageBox.getAddress(), brokerLocation)
                .renewMessageboxSubscription(eprOfMessageBox, SubscriptionID, topic, xpath, subscribePermanatly);
    }
View Full Code Here

     * @throws RemoteException
     */
    public static Subscription createMessageBoxSubscription(String messageBoxUrl, String brokerLocation, String topic,
            String xpath, Callback callback, boolean subscribePermanatly) throws Exception {

        return new MessageBoxNotificationHandler(messageBoxUrl, brokerLocation).createMsgBoxSubscription(topic, xpath,
                callback, subscribePermanatly);
    }
View Full Code Here

     * @throws Exception
     */
    public static Subscription createMessageBoxSubscription(String messageBoxUrl, String brokerLocation, String topic,
            String xpath, Callback callback) throws Exception {

        return new MessageBoxNotificationHandler(messageBoxUrl, brokerLocation).createSubscription(topic, xpath,
                callback, false);
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.tracking.impl.subscription.MessageBoxNotificationHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.