Package org.springframework.xd.analytics.metrics.core

Examples of org.springframework.xd.analytics.metrics.core.GaugeRepository.deleteAll()


    assertThat(gauges.size(), equalTo(2));

    repo.delete(myGauge);
    assertThat(repo.findOne(myGaugeName), is(nullValue()));

    repo.deleteAll();
    assertThat(repo.findOne(yourGaugeName), is(nullValue()));
    assertEquals(0, repo.count());

    repo.save(Arrays.asList(g1, g2));
    assertThat(repo.count(), equalTo(2L));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.