org.gradle.internal.resources.ProjectLeaseRegistry 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.resources;
import org.gradle.internal.Factory;
import org.gradle.util.Path;
import java.util.Collection;
public interface ProjectLeaseRegistry {
/**
* Get a lock for the specified project.
*
* @param buildIdentityPath
* @param projectIdentityPath
* @return the requested {@link ResourceLock}
*/
ResourceLock getProjectLock(Path buildIdentityPath, Path projectIdentityPath);
/**
* Returns any projects locks currently held by this thread.
*/
Collection extends ResourceLock> getCurrentProjectLocks();
/**
* Releases any project locks currently held by this thread.
*/
void releaseCurrentProjectLocks();
/**
* Releases all project locks held by the current thread and executes the {@link Factory}. Upon completion of the
* {@link Factory}, if a lock was held at the time the method was called, then it will be reacquired. If no locks were held at the
* time the method was called, then no attempt will be made to reacquire a lock on completion. While blocking to reacquire the project
* lock, all worker leases held by the thread will be released and reacquired once the project lock is obtained.
*/
T withoutProjectLock(Factory action);
/**
* Releases all project locks held by the current thread and executes the {@link Runnable}. Upon completion of the
* {@link Runnable}, if a lock was held at the time the method was called, then it will be reacquired. If no locks were held at the
* time the method was called, then no attempt will be made to reacquire a lock on completion. While blocking to reacquire the project
* lock, all worker leases held by the thread will be released and reacquired once the project lock is obtained.
*/
void withoutProjectLock(Runnable action);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy