Package org.apache.oozie.service

Examples of org.apache.oozie.service.JMSAccessorService


    private ConnectionContext getConnectionContext() {
        Configuration conf = services.getConf();
        String jmsProps = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        JMSConnectionInfo connInfo = new JMSConnectionInfo(jmsProps);
        JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
        ConnectionContext jmsContext = jmsService.createConnectionContext(connInfo);
        return jmsContext;
    }
View Full Code Here


    private ConnectionContext getConnectionContext() {
        Configuration conf = services.getConf();
        String jmsProps = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        JMSConnectionInfo connInfo = new JMSConnectionInfo(jmsProps);
        JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
        ConnectionContext jmsContext = jmsService.createProducerConnectionContext(connInfo);
        return jmsContext;

    }
View Full Code Here

    @Override
    public void onException(JMSException exception) {
        LOG.warn("Received JMSException for [{0}]", connInfo, exception);
        connCtxt.close();
        if (retry) {
            JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
            jmsService.reestablishConnection(connInfo);
        }
    }
View Full Code Here

    private ConnectionContext getConnectionContext() {
        Configuration conf = services.getConf();
        String jmsProps = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        JMSConnectionInfo connInfo = new JMSConnectionInfo(jmsProps);
        JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
        ConnectionContext jmsContext = jmsService.createConnectionContext(connInfo);
        return jmsContext;
    }
View Full Code Here

    private ConnectionContext getConnectionContext() {
        Configuration conf = services.getConf();
        String jmsProps = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        JMSConnectionInfo connInfo = new JMSConnectionInfo(jmsProps);
        JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
        ConnectionContext jmsContext = jmsService.createProducerConnectionContext(connInfo);
        return jmsContext;

    }
View Full Code Here

    @Override
    public void onException(JMSException exception) {
        LOG.warn("Received JMSException for [{0}]", connInfo, exception);
        connCtxt.close();
        if (retry) {
            JMSAccessorService jmsService = Services.get().get(JMSAccessorService.class);
            jmsService.reestablishConnection(connInfo);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.oozie.service.JMSAccessorService

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.