Searched refs:TickerType (Results 1 – 9 of 9) sorted by relevance
18 public enum TickerType { enum729 TickerType(final byte value) { in TickerType() method in TickerType751 public static TickerType getTickerType(final byte value) { in getTickerType()752 for (final TickerType tickerType : TickerType.values()) { in getTickerType()
81 for(final TickerType ticker : TickerType.values()) { in collectStatistics()82 if(ticker != TickerType.TICKER_ENUM_MAX) { in collectStatistics()
77 public long getTickerCount(final TickerType tickerType) { in getTickerCount()89 public long getAndResetTickerCount(final TickerType tickerType) { in getAndResetTickerCount()
24 void tickerCallback(TickerType tickerType, long tickerCount); in tickerCallback()
50 assertThat(statistics.getTickerCount(TickerType.BYTES_READ)).isGreaterThan(0); in getTickerCount()71 final long read = statistics.getAndResetTickerCount(TickerType.BYTES_READ); in getAndResetTickerCount()74 final long readAfterReset = statistics.getTickerCount(TickerType.BYTES_READ); in getAndResetTickerCount()147 final long read = statistics.getTickerCount(TickerType.BYTES_READ); in reset()152 final long readAfterReset = statistics.getTickerCount(TickerType.BYTES_READ); in reset()
12 public void tickerCallback(TickerType tickerType, long tickerCount) { in tickerCallback()
131 assertThat(statistics.getTickerCount(TickerType.BLOCK_CACHE_ADD)).isEqualTo(shard + 1); in blockCacheIntegration()207 … assertThat(statistics.getTickerCount(TickerType.BLOCK_CACHE_COMPRESSED_ADD)).isEqualTo(shard + 1); in blockCacheCompressedIntegration()
222 for (final TickerType statsType : TickerType.values()) { in main()223 if (statsType != TickerType.TICKER_ENUM_MAX) { in main()
216 src/main/java/org/rocksdb/TickerType.java