Example usage for javax.jms Topic Topic

List of usage examples for javax.jms Topic Topic

Introduction

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

Prototype

Topic

Source Link

Usage

From source file:org.openmrs.event.EventEngine.java

/**
 * @see Event#getDestination(String)/*from   w ww .ja  va 2 s  .c  om*/
 */
public Destination getDestination(final String topicName) {
    return new Topic() {

        @Override
        public String getTopicName() throws JMSException {
            return topicName;
        }
    };
}