Package ch.qos.logback.core.util
Class ExecutorServiceUtil
- java.lang.Object
-
- ch.qos.logback.core.util.ExecutorServiceUtil
-
@Deprecated(since="2022-01-27") public class ExecutorServiceUtil extends java.lang.ObjectDeprecated.This internal logback API is not supported by AEM as a Cloud Service.Static utility methods for manipulating anExecutorService.
-
-
Constructor Summary
Constructors Constructor Description ExecutorServiceUtil()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.util.concurrent.ExecutorServicenewExecutorService()Deprecated.Creates an executor service suitable for use by logback components.static java.util.concurrent.ScheduledExecutorServicenewScheduledExecutorService()Deprecated.static voidshutdown(java.util.concurrent.ExecutorService executorService)Deprecated.Shuts down an executor service.
-
-
-
Method Detail
-
newScheduledExecutorService
public static java.util.concurrent.ScheduledExecutorService newScheduledExecutorService()
Deprecated.
-
newExecutorService
public static java.util.concurrent.ExecutorService newExecutorService()
Deprecated.Creates an executor service suitable for use by logback components.- Returns:
- executor service
-
shutdown
public static void shutdown(java.util.concurrent.ExecutorService executorService)
Deprecated.Shuts down an executor service.- Parameters:
executorService- the executor service to shut down
-
-