* @param resultHandler An asynchronous handler to be called once complete.
* @return The Vertigo instance.
*/
public Vertigo getCluster(String address, Handler<AsyncResult<Cluster>> resultHandler) {
Cluster cluster = new DefaultCluster(address, vertx, container);
cluster.ping(resultHandler);
return this;
}
/**
* Deploys a bare network to an anonymous local-only cluster.<p>