org.gradle.internal.work.WorkerLeaseService 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.work;
import org.gradle.internal.Factory;
import org.gradle.internal.resources.ProjectLeaseRegistry;
import org.gradle.internal.resources.ResourceLock;
import org.gradle.internal.service.scopes.Scopes;
import org.gradle.internal.service.scopes.ServiceScope;
@ServiceScope(Scopes.BuildSession.class)
public interface WorkerLeaseService extends WorkerLeaseRegistry, ProjectLeaseRegistry {
/**
* Returns the maximum number of worker leases that this service will grant at any given time. Note that the actual limit may vary over time but will never _exceed_ the value returned by this method.
*/
int getMaxWorkerCount();
/**
* Runs a given {@link Factory} while the specified locks are being held, releasing
* the locks upon completion. Blocks until the specified locks can be obtained.
*/
T withLocks(Iterable extends ResourceLock> locks, Factory factory);
/**
* Runs a given {@link Runnable} while the specified locks are being held, releasing
* the locks upon completion. Blocks until the specified locks can be obtained.
*/
void withLocks(Iterable extends ResourceLock> locks, Runnable runnable);
/**
* Runs a given {@link Factory} while the specified locks are released and then reacquire the locks
* upon completion. If the locks cannot be immediately reacquired, the current worker lease will be released
* and the method will block until the locks are reacquired.
*/
T withoutLocks(Iterable extends ResourceLock> locks, Factory factory);
/**
* Runs a given {@link Runnable} while the specified locks are released and then reacquire the locks
* upon completion. If the locks cannot be immediately reacquired, the current worker lease will be released
* and the method will block until the locks are reacquired.
*/
void withoutLocks(Iterable extends ResourceLock> locks, Runnable runnable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy