TransportClient instead of Client in the code

This commit is contained in:
Philips Kokoh 2016-06-16 11:32:49 +08:00 committed by GitHub
parent f7b7204721
commit cc465a38bf

View file

@ -37,7 +37,7 @@ be "two hop" operations).
--------------------------------------------------
// on startup
Client client = TransportClient.builder().build()
TransportClient client = TransportClient.builder().build()
.addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName("host1"), 9300))
.addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName("host2"), 9300));
@ -53,7 +53,7 @@ Note that you have to set the cluster name if you use one different than
--------------------------------------------------
Settings settings = Settings.builder()
.put("cluster.name", "myClusterName").build();
Client client = TransportClient.builder().settings(settings).build();
TransportClient client = TransportClient.builder().settings(settings).build();
//Add transport addresses and do something with the client...
--------------------------------------------------