List of usage examples for org.apache.cassandra.transport Client main
public static void main(String[] args) throws Exception
From source file:my.test.client.ClientTest.java
License:Apache License
/** * @param args/*from ww w . j a v a 2 s . c o m*/ */ public static void main(String[] args) { try { Client.main(new String[] { "localhost", "9042" }); } catch (Exception e) { e.printStackTrace(); } }