21 lines
910 B
Java
21 lines
910 B
Java
package com.google.android.gms.common.internal;
|
|
|
|
import com.google.android.gms.common.util.concurrent.NamedThreadFactory;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
import java.util.concurrent.LinkedBlockingQueue;
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
final class zzj {
|
|
static final ExecutorService zza;
|
|
|
|
static {
|
|
com.google.android.gms.internal.common.zzh.zza();
|
|
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(1, 1, 60L, TimeUnit.SECONDS, new LinkedBlockingQueue(), new NamedThreadFactory("CallbackExecutor"));
|
|
threadPoolExecutor.allowCoreThreadTimeOut(true);
|
|
zza = Executors.unconfigurableExecutorService(threadPoolExecutor);
|
|
}
|
|
} |