/* * This file is part of OneConfig. * OneConfig - Next Generation Config Library for Minecraft: Java Edition * Copyright (C) 2021, 2022 Polyfrost. * * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * OneConfig is licensed under the terms of version 3 of the GNU Lesser * General Public License as published by the Free Software Foundation, AND * under the Additional Terms Applicable to OneConfig, as published by Polyfrost, * either version 1.0 of the Additional Terms, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License. If not, see . You should * have also received a copy of the Additional Terms Applicable * to OneConfig, as published by Polyfrost. If not, see * */ package cc.polyfrost.oneconfig.utils; import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.concurrent.*; /** * Allows for easy multithreading. *

* Taken from Seraph by Scherso under LGPL-2.1 * https://github.com/Scherso/Seraph/blob/master/LICENSE *

*/ public class Multithreading { private static final ExecutorService executorService = Executors.newCachedThreadPool(new ThreadFactoryBuilder().setNameFormat("OneConfig-%d").build()); private static final ScheduledExecutorService runnableExecutor = new ScheduledThreadPoolExecutor(Runtime.getRuntime().availableProcessors() + 1); /** * Runs the runnable asynchronously. * * @param runnable The runnable to run. * @see Multithreading#submit(Runnable) */ public static void runAsync(Runnable runnable) { submit(runnable); } /** * Runs the provided runnables asynchronously. * * @param runnables The runnables to run. * @see Multithreading#runAsync(Runnable) */ public static void runAsync(Runnable... runnables) { for (Runnable runnable : runnables) { runAsync(runnable); } } /** * Submits the Runnable to the executor, making it run asynchronously. * * @param runnable The runnable to run. * @return The future representing the submitted runnable. * @see ExecutorService#submit(Runnable) */ public static Future submit(Runnable runnable) { return executorService.submit(runnable); } /** * Schedules the runnable to run asynchronously after the specified delay. * * @param runnable The runnable to run. * @param delay The delay before the runnable is run. * @param timeUnit The {@link TimeUnit} of the delay. * @see Multithreading#submitScheduled(Runnable, long, TimeUnit) */ public static void schedule(Runnable runnable, long delay, TimeUnit timeUnit) { submitScheduled(runnable, delay, timeUnit); } /** * Submits the Runnable to the executor after a delay, making it run asynchronously. * * @param runnable The runnable to run. * @param delay The delay before the runnable is run. * @param timeUnit The {@link TimeUnit} of the delay. * @return The future representing the submitted runnable. * @see ScheduledExecutorService#schedule(Runnable, long, TimeUnit) */ public static ScheduledFuture submitScheduled(Runnable runnable, long delay, TimeUnit timeUnit) { return runnableExecutor.schedule(runnable, delay, timeUnit); } }