Package com.couchbase.client.java.cluster

Examples of com.couchbase.client.java.cluster.ClusterInfo


            }).toBlocking().lastOrDefault(null);
    }

    @Test
    public void shouldLoadInfo() {
        ClusterInfo info = clusterManager.info().toBlocking().single();

        assertNotNull(info);
        assertTrue(info.raw().getObject("storageTotals").getObject("ram").getLong("total") > 0);
    }
View Full Code Here

TOP

Related Classes of com.couchbase.client.java.cluster.ClusterInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.