com.landawn.abacus.util.AndroidUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-util-se Show documentation
Show all versions of abacus-util-se Show documentation
A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.
/*
* Copyright (C) 2019 HaiYang Li
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.landawn.abacus.util;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import com.landawn.abacus.annotation.Internal;
// TODO: Auto-generated Javadoc
/**
* The Class AndroidUtil.
*
* @author haiyangl
*
*/
@Internal
public final class AndroidUtil {
/** The Constant SERIAL_EXECUTOR. */
private static final Executor SERIAL_EXECUTOR;
/** The Constant TP_EXECUTOR. */
private static final Executor TP_EXECUTOR;
static {
if (IOUtil.IS_PLATFORM_ANDROID) {
SERIAL_EXECUTOR = android.os.AsyncTask.SERIAL_EXECUTOR;
TP_EXECUTOR = android.os.AsyncTask.THREAD_POOL_EXECUTOR;
} else {
SERIAL_EXECUTOR = Executors.newSingleThreadExecutor();
TP_EXECUTOR = Executors.newFixedThreadPool(IOUtil.CPU_CORES);
}
}
/**
* Instantiates a new android util.
*/
private AndroidUtil() {
// utility class;
}
/**
* Gets the serial executor.
*
* @return
*/
@Internal
public static Executor getSerialExecutor() {
return SERIAL_EXECUTOR;
}
/**
* Gets the thread pool executor.
*
* @return
*/
@Internal
public static Executor getThreadPoolExecutor() {
return TP_EXECUTOR;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy