Package com.atolsystems.singleInstance.SingleInstanceServer

Examples of com.atolsystems.singleInstance.SingleInstanceServer.ThreadingPolicy


        return sb.toString();
    }

    public int singleInstanceMain(String[] args) {
        System.out.println("singleInstanceMain starts");
        ThreadingPolicy policy=(ThreadingPolicy) EnumInputDialog.showInputDialog(
                "Choose the threading policy",
                "Threading policy",
                ThreadingPolicy.class);
        System.out.println("policy="+policy);
        singleInstance.setPolicy(policy);
View Full Code Here

TOP

Related Classes of com.atolsystems.singleInstance.SingleInstanceServer.ThreadingPolicy

Copyright © 2018 www.massapicom. 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.