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

com.microsoft.bingads.internal.utilities.ThreadPool Maven / Gradle / Ivy

package com.microsoft.bingads.internal.utilities;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class ThreadPool {
    private static final ExecutorService pool = Executors.newCachedThreadPool();

    public static void execute(Runnable runnable) {
        pool.execute(runnable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy