You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2018/08/21 22:12:24 UTC

[geode] branch feature/Micrometer updated: removing duplicate

This is an automated email from the ASF dual-hosted git repository.

udo pushed a commit to branch feature/Micrometer
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/Micrometer by this push:
     new 97be399  removing duplicate
97be399 is described below

commit 97be399fa5476a7482e8095206fc1a6df57d3063
Author: Udo Kohlmeyer <uk...@pivotal.io>
AuthorDate: Tue Aug 21 15:12:11 2018 -0700

    removing duplicate
---
 .../internal/offheap/OffHeapStorageStats.java      | 53 ----------------------
 1 file changed, 53 deletions(-)

diff --git a/geode-stats-common/src/main/java/org/apache/geode/cache/internal/offheap/OffHeapStorageStats.java b/geode-stats-common/src/main/java/org/apache/geode/cache/internal/offheap/OffHeapStorageStats.java
deleted file mode 100644
index 92d1470..0000000
--- a/geode-stats-common/src/main/java/org/apache/geode/cache/internal/offheap/OffHeapStorageStats.java
+++ /dev/null
@@ -1,53 +0,0 @@
-package org.apache.geode.internal.offheap;
-
-import org.apache.geode.statistics.Statistics;
-
-public interface OffHeapStorageStats {
-  void incFreeMemory(long value);
-
-  void incMaxMemory(long value);
-
-  void incUsedMemory(long value);
-
-  void incObjects(int value);
-
-  void incReads();
-
-  void setFragments(long value);
-
-  void setLargestFragment(int value);
-
-  long startDefragmentation();
-
-  void endDefragmentation(long start);
-
-  void setFragmentation(int value);
-
-  long getFreeMemory();
-
-  long getMaxMemory();
-
-  long getUsedMemory();
-
-  long getReads();
-
-  int getObjects();
-
-  int getDefragmentations();
-
-  int getDefragmentationsInProgress();
-
-  long getFragments();
-
-  int getLargestFragment();
-
-  int getFragmentation();
-
-  long getDefragmentationTime();
-
-  Statistics getStats();
-
-  void close();
-
-  void initialize(OffHeapStorageStats stats);
-}