Uses of Class
com.mockrunner.mock.jms.MockTopic

Packages that use MockTopic
com.mockrunner.jms   
com.mockrunner.mock.jms   
 

Uses of MockTopic in com.mockrunner.jms
 

Methods in com.mockrunner.jms that return MockTopic
protected  MockTopic BasicJMSTestCaseAdapter.getTopic(java.lang.String name)
          Delegates to JMSTestModule.getTopic(String)
 MockTopic DestinationManager.createTopic(java.lang.String name)
          Creates a new Topic that is available for MockSession.createTopic(java.lang.String) calls.
 MockTopic DestinationManager.getTopic(java.lang.String name)
          Returns a Topic that was created with DestinationManager.createTopic(java.lang.String) or null if no such Topic is present.
protected  MockTopic JMSTestCaseAdapter.getTopic(java.lang.String name)
          Delegates to JMSTestModule.getTopic(String)
 MockTopic JMSTestModule.getTopic(java.lang.String name)
          Returns the MockTopic with the specified name or null if no such topic exists.
 

Methods in com.mockrunner.jms with parameters of type MockTopic
 MockTopicPublisher TopicTransmissionManager.createTopicPublisher(MockTopic topic)
          Creates a new TopicPublisher for the specified Topic.
 MockTopicSubscriber TopicTransmissionManager.createTopicSubscriber(MockTopic topic, java.lang.String messageSelector, boolean noLocal)
          Creates a new TopicSubscriber for the specified Topic.
 MockTopicSubscriber TopicTransmissionManager.createDurableTopicSubscriber(MockTopic topic, java.lang.String name, java.lang.String messageSelector, boolean noLocal)
          Creates a new durable TopicSubscriber for the specified Topic.
 

Uses of MockTopic in com.mockrunner.mock.jms
 

Subclasses of MockTopic in com.mockrunner.mock.jms
 class MockTemporaryTopic
           
 

Constructors in com.mockrunner.mock.jms with parameters of type MockTopic
MockTopicPublisher(MockConnection connection, MockSession session, MockTopic topic)
           
MockTopicSubscriber(MockConnection connection, MockSession session, MockTopic topic)
           
MockTopicSubscriber(MockConnection connection, MockSession session, MockTopic topic, java.lang.String messageSelector, boolean noLocal)