All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.dagere.kopeme.datacollection.EndRAMCollector Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package de.dagere.kopeme.datacollection;

public class EndRAMCollector extends DataCollector {

   private long value;

   @Override
   public int getPriority() {
      return MIDDLE_COLLECTOR_PRIORITY; // Middle-High Priority, as the RAMUsageCollector should not
      // measure the things other DataCollectors create
   }

   @Override
   public void startCollection() {

   }

   @Override
   public void stopCollection() {
      value = Runtime.getRuntime().totalMemory();
   }

   @Override
   public long getValue() {
      return value;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy