All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.atleon.core.Contextual Maven / Gradle / Ivy

There is a newer version: 0.28.3
Show newest version
package io.atleon.core;

import java.util.function.Supplier;

/**
 * An object that may have some context associated with it.
 */
public interface Contextual {

    /**
     * Invoke the given {@link Runnable} while managing context around its invocation.
     *
     * @param runnable The {@link Runnable} to invoke
     */
    default void runInContext(Runnable runnable) {
        runnable.run();
    }

    /**
     * Invoke the given {@link Supplier} while managing context around its invocation.
     *
     * @param supplier A {@link Supplier} to invoke
     * @param       The type of result produced by the {@link Supplier}
     * @return The value resulting from invoking the {@link Supplier}
     */
    default  R supplyInContext(Supplier supplier) {
        return supplier.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy