org.gradle.workers.WorkerConfiguration 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.workers;
import org.gradle.api.Action;
import org.gradle.api.ActionConfiguration;
import org.gradle.api.Describable;
import org.gradle.process.JavaForkOptions;
import javax.annotation.Nullable;
import java.io.File;
/**
* Represents the configuration of a worker. Used when submitting an item of work
* to the {@link WorkerExecutor}.
*
*
* workerExecutor.submit(RunnableWorkImpl.class) { WorkerConfiguration conf ->
* conf.isolationMode = IsolationMode.PROCESS
*
* forkOptions { JavaForkOptions options ->
* options.maxHeapSize = "512m"
* options.systemProperty 'some.prop', 'value'
* options.jvmArgs "-server"
* }
*
* classpath configurations.fooLibrary
*
* conf.params = [ "foo", file('bar') ]
* }
*
*
* @since 3.5
*/
public interface WorkerConfiguration extends Describable, ActionConfiguration {
/**
* Adds a set of files to the classpath associated with the worker.
*
* @param files - the files to add to the classpath
*/
void classpath(Iterable files);
/**
* Sets the classpath associated with the worker.
*
* @param files - the files to set the classpath to
*/
void setClasspath(Iterable files);
/**
* Gets the classpath associated with the worker.
*
* @return the classpath associated with the worker
*/
Iterable getClasspath();
/**
* Gets the isolation mode for this worker, see {@link IsolationMode}.
*
* @return the isolation mode for this worker, see {@link IsolationMode}, defaults to {@link IsolationMode#AUTO}
*
* @since 4.0
*/
IsolationMode getIsolationMode();
/**
* Sets the isolation mode for this worker, see {@link IsolationMode}.
*
* @param isolationMode the forking mode for this worker, see {@link IsolationMode}
*
* @since 4.0
*/
void setIsolationMode(IsolationMode isolationMode);
/**
* Gets the forking mode for this worker, see {@link ForkMode}.
*
* @return the forking mode for this worker, see {@link ForkMode}, defaults to {@link ForkMode#AUTO}
*/
ForkMode getForkMode();
/**
* Sets the forking mode for this worker, see {@link ForkMode}.
*
* @param forkMode the forking mode for this worker, see {@link ForkMode}
*/
void setForkMode(ForkMode forkMode);
/**
* Executes the provided action against the {@link JavaForkOptions} object associated with this builder.
*
* @param forkOptionsAction - An action to configure the {@link JavaForkOptions} for this builder
*/
void forkOptions(Action super JavaForkOptions> forkOptionsAction);
/**
* Returns the {@link JavaForkOptions} object associated with this builder.
*
* @return the {@link JavaForkOptions} of this builder
*/
JavaForkOptions getForkOptions();
/**
* Sets the name to use when displaying this item of work.
*
* @param displayName the name of this item of work
*/
void setDisplayName(String displayName);
/**
* {@inheritDoc}
*/
@Nullable
@Override
String getDisplayName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy