org.gradle.internal.operations.BuildOperationExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* 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 org.gradle.internal.operations;
import javax.annotation.concurrent.ThreadSafe;
import org.gradle.api.Action;
/**
* Runs build operations. These are the pieces of work that make up a build. Build operations can be nested inside other
* build operations.
*
* The executor provides several capabilities:
*
*
* Fires events via {@link BuildOperationListener}. For example, this means that notification of build operation
* execution can be received by tooling API clients.
* Generates progress logging events.
*
*
* Operations are executed synchronously or asynchronous.
*/
@ThreadSafe
public interface BuildOperationExecutor {
/**
* Runs the given build operation synchronously. Invokes the given operation from the current thread.
*
* Rethrows any exception thrown by the action.
*/
void run(RunnableBuildOperation buildOperation);
/**
* Calls the given build operation synchronously. Invokes the given operation from the current thread.
* Returns the result.
*
* Rethrows any exception thrown by the action.
*/
T call(CallableBuildOperation buildOperation);
/**
* Starts an operation that can be finished later through its context available via {@link ExecutingBuildOperation#getContext()}.
*
* When a parent operation is finished any unfinished child operations will be failed.
*/
ExecutingBuildOperation start(BuildOperationDescriptor.Builder descriptor);
/**
* Submits an arbitrary number of runnable operations, created synchronously by the scheduling action, to be executed in the global
* build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
*/
void runAll(Action> schedulingAction);
/**
* Submits an arbitrary number of operations, created synchronously by the scheduling action, to be executed by the supplied
* worker in the global build operation thread pool. Operations may execute concurrently, so the worker should be thread-safe.
* Blocks until all operations are complete.
*/
void runAll(BuildOperationWorker worker, Action> schedulingAction);
/**
* Returns the state of the build operation currently running on this thread. Can be used as parent of a new build operation
* started in a different thread (or process). See {@link BuildOperationDescriptor.Builder#parent(BuildOperationRef)}
*
* @throws IllegalStateException When the current thread is not executing an operation.
*/
BuildOperationRef getCurrentOperation();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy