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

co.buybuddy.networking.metrics.IOMetricsRepository Maven / Gradle / Ivy

The newest version!
package co.buybuddy.networking.metrics;

import java.util.ArrayList;
import java.util.Queue;

public class IOMetricsRepository {
    private Queue metricsQueue;

    /**
     * Pushes metrics to the repository immediately.
     */
    public void pushImmediately() {
        ArrayList metricsToBeSent = new ArrayList(this.metricsQueue);

        //  TODO: Push metrics to the central repository.

        metricsQueue.clear();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy