blob: 71758019cc2405b1ec4bcbbe697d3b28f6bcc64c [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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 android.arch.core.executor;
import android.support.annotation.NonNull;
import android.support.annotation.RestrictTo;
/**
* A task executor that can divide tasks into logical groups.
* <p>
* It holds a collection a executors for each group of task.
* <p>
* TODO: Don't use this from outside, we don't know what the API will look like yet.
* @hide
*/
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
public abstract class TaskExecutor {
/**
* Executes the given task in the disk IO thread pool.
*
* @param runnable The runnable to run in the disk IO thread pool.
*/
public abstract void executeOnDiskIO(@NonNull Runnable runnable);
/**
* Posts the given task to the main thread.
*
* @param runnable The runnable to run on the main thread.
*/
public abstract void postToMainThread(@NonNull Runnable runnable);
/**
* Executes the given task on the main thread.
* <p>
* If the current thread is a main thread, immediately runs the given runnable.
*
* @param runnable The runnable to run on the main thread.
*/
public void executeOnMainThread(@NonNull Runnable runnable) {
if (isMainThread()) {
runnable.run();
} else {
postToMainThread(runnable);
}
}
/**
* Returns true if the current thread is the main thread, false otherwise.
*
* @return true if we are on the main thread, false otherwise.
*/
public abstract boolean isMainThread();
}