Rabbit-R1/android (non root)/java/sources/kotlinx/coroutines/ThreadPoolDispatcherKt.java
2024-05-21 17:08:36 -04:00

41 lines
2.3 KiB
Java

package kotlinx.coroutines;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicInteger;
import kotlin.Metadata;
/* compiled from: ThreadPoolDispatcher.kt */
@Metadata(d1 = {"\u0000\u0016\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\u001a\u0018\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u0007\u001a\u0010\u0010\u0006\u001a\u00020\u00012\u0006\u0010\u0004\u001a\u00020\u0005H\u0007¨\u0006\u0007"}, d2 = {"newFixedThreadPoolContext", "Lkotlinx/coroutines/ExecutorCoroutineDispatcher;", "nThreads", "", "name", "", "newSingleThreadContext", "kotlinx-coroutines-core"}, k = 2, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes3.dex */
public final class ThreadPoolDispatcherKt {
public static final ExecutorCoroutineDispatcher newSingleThreadContext(String str) {
return newFixedThreadPoolContext(1, str);
}
public static final ExecutorCoroutineDispatcher newFixedThreadPoolContext(final int i, final String str) {
if (i < 1) {
throw new IllegalArgumentException(("Expected at least one thread, but " + i + " specified").toString());
}
final AtomicInteger atomicInteger = new AtomicInteger();
return ExecutorsKt.from((ExecutorService) Executors.newScheduledThreadPool(i, new ThreadFactory() { // from class: kotlinx.coroutines.ThreadPoolDispatcherKt$$ExternalSyntheticLambda0
@Override // java.util.concurrent.ThreadFactory
public final Thread newThread(Runnable runnable) {
Thread newFixedThreadPoolContext$lambda$1;
newFixedThreadPoolContext$lambda$1 = ThreadPoolDispatcherKt.newFixedThreadPoolContext$lambda$1(i, str, atomicInteger, runnable);
return newFixedThreadPoolContext$lambda$1;
}
}));
}
/* JADX INFO: Access modifiers changed from: private */
public static final Thread newFixedThreadPoolContext$lambda$1(int i, String str, AtomicInteger atomicInteger, Runnable runnable) {
if (i != 1) {
str = str + '-' + atomicInteger.incrementAndGet();
}
Thread thread = new Thread(runnable, str);
thread.setDaemon(true);
return thread;
}
}