Newer
Older
democall3 / tests / ServerPeeker.java
geoma48p on 20 Jul 2015 325 bytes Started transition to JMS.

import java.util.Collection;
import server.jms.JmsConnection;


/**
 *
 * @author Mark
 */
public class ServerPeeker {

	public static void main(String[] args) {
		Collection<String> availableServers = new JmsConnection().peekAll("active_servers");
		
		System.out.println(availableServers);
		
	}
	
	
}