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

com.etsy.statsd.profiler.worker.ProfilerWorkerThread Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.etsy.statsd.profiler.worker;

import com.etsy.statsd.profiler.Profiler;

/**
 * Worker thread for executing a profiler
 *
 * @author Andrew Johnson
 */
public class ProfilerWorkerThread implements Runnable {
    private Profiler profiler;

    public ProfilerWorkerThread(Profiler profiler) {
        this.profiler = profiler;
    }

    @Override
    public void run() {
        profiler.profile();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy