Package org.apache.stratos.messaging.listener.instance.notifier

Examples of org.apache.stratos.messaging.listener.instance.notifier.InstanceCleanupClusterEventListener


                    onInstanceCleanupEvent();
                }
            }
        });

        eventReceiver.addEventListener(new InstanceCleanupClusterEventListener() {
            @Override
            protected void onEvent(Event event) {
                String clusterIdInPayload = CartridgeAgentConfiguration.getInstance().getClusterId();
                InstanceCleanupClusterEvent instanceCleanupClusterEvent = (InstanceCleanupClusterEvent) event;
                if (clusterIdInPayload.equals(instanceCleanupClusterEvent.getClusterId())) {
View Full Code Here

TOP

Related Classes of org.apache.stratos.messaging.listener.instance.notifier.InstanceCleanupClusterEventListener

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.