Package org.rioproject.monitor.service.channel

Examples of org.rioproject.monitor.service.channel.ServiceChannelEvent


                                                                    svcElement.getOperationalStringName(),
                                                                    svcElement,
                                                                    instance);
            processEvent(event);
            ServiceChannel channel = ServiceChannel.getInstance();
            channel.broadcast(new ServiceChannelEvent(this, svcElement, ServiceChannelEvent.Type.PROVISIONED));
        }
View Full Code Here


                                                                            svcElement.getOperationalStringName(),
                                                                            svcElement,
                                                                            instance);
                    processEvent(event);
                    ServiceChannel channel = ServiceChannel.getInstance();
                    channel.broadcast(new ServiceChannelEvent(this, svcElement, ServiceChannelEvent.Type.FAILED));
                }
                mgrLogger.trace("Redeployment ProvisionRequest for [{}] obtained: {}",
                                 LoggingUtil.getLoggingName(svcElement),
                                 (provRequest==null?"no":"yes"));
                if(provRequest == null) {
View Full Code Here

                if (idleServices.size() == serviceElement.getPlanned()) {
                    logger.info("Service [{}] has {} / {} idle instances. Notify for undeploy.",
                                LoggingUtil.getLoggingName(serviceElement),
                                idleServices.size(),
                                serviceElement.getPlanned());
                    ServiceChannel.getInstance().broadcast(new ServiceChannelEvent(this,
                                                                                   serviceElement,
                                                                                   ServiceChannelEvent.Type.IDLE));
                    for (ServiceActivityProvider remove : idleServices) {
                        removeService(remove);
                    }
View Full Code Here

                        }
                    }
                    mgr.importServiceBeanInstance(instance);

                    ServiceChannel channel = ServiceChannel.getInstance();
                    channel.broadcast(new ServiceChannelEvent(this, sElem, ServiceChannelEvent.Type.PROVISIONED));
                    break;

                case REDEPLOY_REQUEST:
                    opMgr = opStringMangerController.getOpStringManager(pme.getOperationalStringName());
                    if(opMgr == null) {
View Full Code Here

TOP

Related Classes of org.rioproject.monitor.service.channel.ServiceChannelEvent

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.