3839404142434445
public static final long WAIT_LINETIMEOUT = 1500; protected static CLIWrapper cli; public static void initCLI() throws Exception { if (cli == null) { cli = new CLIWrapper(true); } }
4445464748495051
} } public static void initCLI(String cliAddress) throws Exception { if (cli == null) { cli = new CLIWrapper(true, cliAddress); } }
37383940414243
public final static long WAIT_TIMEOUT = 10000; public final static long WAIT_LINETIMEOUT = 1000; protected static CLIWrapper cli; public static void initCLI() throws Exception { if (cli == null) cli = new CLIWrapper(true); }