Package test

Source Code of test.Runner

package test;

import messanger.QueueMessenger;
import messanger.TopicMessager;

import com.sun.messaging.Queue;
import com.sun.messaging.Topic;


public class Runner
{
 
  public static void main(String[] args) throws Exception
  {
    Queue queue = new Queue("World");
    QueueMessenger messenger = new QueueMessenger();
    messenger.sendMessage(queue);
    messenger.recieveMessage(queue);
    messenger.closeSession();
   
    Topic topic = new Topic("Topic");
    TopicMessager topicMess = new TopicMessager();
    topicMess.sendMessage(topic);
    topicMess.recieveMessage(topic);
    topicMess.closeSession();
   
  }
 
}
TOP

Related Classes of test.Runner

TOP
Copyright © 2018 www.massapi.com. 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.