Package org.apache.karaf.cellar.obr

Examples of org.apache.karaf.cellar.obr.ClusterObrBundleEvent


            throw new IllegalArgumentException("OBR bundle " + bundleId + " is blocked outbound for cluster group " + groupName);
        }

        // create an event and produce it
        int type = 0;
        ClusterObrBundleEvent event = new ClusterObrBundleEvent(bundleId, type);
        event.setForce(true);
        event.setSourceGroup(group);
        eventProducer.produce(event);
    }
View Full Code Here


        }

        // broadcast a cluster event
        int type = 0;
        if (start) type = Constants.BUNDLE_START_EVENT_TYPE;
        ClusterObrBundleEvent event = new ClusterObrBundleEvent(bundleId, type);
        event.setForce(true);
        event.setSourceGroup(group);
        eventProducer.produce(event);

        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.karaf.cellar.obr.ClusterObrBundleEvent

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.