Package com.sun.enterprise.ee.synchronization

Examples of com.sun.enterprise.ee.synchronization.JmxGroupRequestMediator


            _logger.log(Level.FINE,
                "Http based synchronization failed, trying jmx based impl..",
                httpGrm.getException());

            // re-try the synchronization request using jmx
            JmxGroupRequestMediator jmxGrm =
                    new JmxGroupRequestMediator(dpr, allReqs, tx);
            jmxGrm.run();

            if (jmxGrm.isException()) {
                // synchronization failed
                throw new SynchronizationException(jmxGrm.getException());
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.ee.synchronization.JmxGroupRequestMediator

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.