Package org.rioproject.monitor.service.tasks

Examples of org.rioproject.monitor.service.tasks.ProvisionFailureEventTask


    void processProvisionFailure(ProvisionRequest request, Exception e) {
        ProvisionFailureEvent event = new ProvisionFailureEvent(context.getEventSource(),
                                                                request.getServiceElement(),
                                                                request.getFailureReasons(),
                                                                e);
        context.getProvisionFailurePool().execute(new ProvisionFailureEventTask(event, context.getFailureHandler()));
    }
View Full Code Here


    /*
     * Helper method to dispatch a ProvisionFailureEventTask to send a ProvisionFailureEvent
     */
    private void processProvisionFailure(final ProvisionFailureEvent event) {
        provisionFailurePool.execute(new ProvisionFailureEventTask(event, failureHandler));
    }
View Full Code Here

TOP

Related Classes of org.rioproject.monitor.service.tasks.ProvisionFailureEventTask

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.