org.gradle.internal.lazy.Lazy 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 2020 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.lazy;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* A wrapper around a value computed lazily. Multiple implementations
* are possible and creating a lazy provider can be done by calling
* one of the factory methods:
*
* - {@link #unsafe()} would create a lazy wrapper which performs no synchronization at all when calling the supplier: it may be called several times concurrently by different threads. Not thread safe!
* - {@link #locking()} would create a lazy wrapper which performs locking when calling the supplier: the supplier will only be called once. Reading is done without locking once initialized.
*
*
* @param the type of the lazy value
*/
public interface Lazy extends Supplier {
/**
* @return the value this lazy wraps
*/
T get();
/**
* Executes an operation on the lazily computed value
*
* @param consumer the consumer
*/
void use(Consumer super T> consumer);
/**
* Applies a function to the lazily computed value and returns its value
*
* @param function the value to apply to the lazily computed value
* @param the return type
* @return the result of the function, applied on the lazily computed value
*/
V apply(Function super T, V> function);
/**
* Creates another lazy wrapper which will eventually apply the supplied
* function to the lazily computed value
*
* @param mapper the mapping function
* @param the type of the result of the function
* @return a new lazy wrapper
*/
default Lazy map(Function super T, V> mapper) {
return unsafe().of(() -> mapper.apply(get()));
}
static Factory unsafe() {
return UnsafeLazy::new;
}
static Factory locking() {
return LockingLazy::new;
}
static Factory synchronizing() {
return SynchronizedLazy::new;
}
interface Factory {
Lazy of(Supplier supplier);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy