Interface AllocationTrackerAdapter


  • public interface AllocationTrackerAdapter
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void add​(long bytes)
      Add the given number of bytes to the total tracked amount.
      void remove​(long bytes)
      Remove the given number of bytes from the total tracked amount.
      long trackedBytes()
      Return the current total of tracked bytes.
    • Method Detail

      • add

        void add​(long bytes)
        Add the given number of bytes to the total tracked amount.
      • remove

        void remove​(long bytes)
        Remove the given number of bytes from the total tracked amount.
      • trackedBytes

        long trackedBytes()
        Return the current total of tracked bytes.