Package org.objectweb.celtix.bus.configuration

Examples of org.objectweb.celtix.bus.configuration.ConfigurationEventFilter


    public JettyHTTPServerTransport(Bus b, EndpointReferenceType ref) throws WSDLException, IOException {
        super(b, ref);
        counters = new TransportServerCounters("JettyHTTPServerTransport");
        engine = JettyHTTPServerEngine.getForPort(bus, nurl.getProtocol(), nurl.getPort());
        //register the configuration event
        ConfigurationEventFilter configurationEventFilter = new ConfigurationEventFilter();
        try {
            bus.addListener((BusEventListener)this, configurationEventFilter);
        } catch (BusException ex) {           
            LOG.log(Level.SEVERE, "REMOVE_LISTENER_FAILURE_MSG", ex);           
        }
View Full Code Here


        //TODO: shall we add BusEventProcessor to a celtix bus registry?
        eventProcessor = new BusEventProcessor(this, eventCache);

        configuration = new BusConfigurationBuilder().build(args, properties);
        //Register bus on bus configuration to receive ConfigurationEvent
        ConfigurationEventFilter configurationEventFilter = new ConfigurationEventFilter();
        addListener((BusEventListener)this, configurationEventFilter);

        busID = (String)configuration.getId();
        servicesMonitoring = configuration.getBoolean("servicesMonitoring");
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.bus.configuration.ConfigurationEventFilter

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.