return Hazelcast.newHazelcastInstance(config);
}
private static Options parseOptions(String[] args) {
Options opts = new Options();
CmdLineParser parser = new CmdLineParser(opts);
try {
parser.parseArgument(args);
} catch (CmdLineException e) {
e.printStackTrace(System.err);
parser.printUsage(System.err);
System.exit(1);
}
if (opts.hosts == null) {
parser.printUsage(System.err);
System.exit(1);
}
return opts;
}