Package org.ops4j.pax.exam.sample9.pde

Examples of org.ops4j.pax.exam.sample9.pde.Notifier.send()


    private void notifyRemoteListener(String rmiProperty) throws Exception {
        int rmiPort = Integer.parseInt(rmiProperty);
        Registry registry = LocateRegistry.getRegistry(rmiPort);
        Remote remote = registry.lookup("PaxExamNotifier");
        Notifier notifier = (Notifier) remote;
        notifier.send("bundle org.ops4j.pax.exam.sample9.pde started");
    }

    /**
     * Optionally blocks framework shutdown for a shutdown timeout regression test.
     */
 
View Full Code Here

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.