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

net.snowflake.ingest.streaming.internal.MemoryInfoProvider Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * Copyright (c) 2023 Snowflake Computing Inc. All rights reserved.
 */

package net.snowflake.ingest.streaming.internal;

/** Provider information about available system memory */
public interface MemoryInfoProvider {
  /** @return Max memory the JVM can allocate */
  long getMaxMemory();

  /** @return Free JVM memory */
  long getFreeMemory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy