Example usage for javax.jms XATopicSession getTopicSession

List of usage examples for javax.jms XATopicSession getTopicSession

Introduction

In this page you can find the example usage for javax.jms XATopicSession getTopicSession.

Prototype

TopicSession getTopicSession() throws JMSException;

Source Link

Document

Gets the topic session associated with this XATopicSession .

Usage

From source file:org.mule.transport.jms.xa.SessionInvocationHandler.java

public SessionInvocationHandler(XATopicSession xaSession, Boolean sameRMOverrideValue) throws JMSException {
    this(xaSession, xaSession.getTopicSession(), sameRMOverrideValue);
}