view test/org/dancres/blitz/remote/Test.java @ 35:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.remote;

/**
   Simple skeleton to bring up a Blitz server and see if it has a proxy.
   Blitz, of course, will advertise itself to JINI LUS instances but that's
   okay and another means of checking things work.
 */
public class Test {
    public static void main(String anArgs[]) {
        try {
            BlitzServiceImpl myServer = new BlitzServiceImpl(anArgs, null);

            System.out.println("Stub: " + myServer.getProxy());
            System.out.println("Proxy: " + myServer.getServiceProxy());

            Object myLock = new Object();

            synchronized(myLock) {
                myLock.wait();
            }

        } catch (Exception anE) {
            System.out.println("Ooops");
            anE.printStackTrace(System.out);
        }
    }
}