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

com.undefinedlabs.scope.bootstrap.ContextStrategy Maven / Gradle / Ivy

package com.undefinedlabs.scope.bootstrap;

import java.util.concurrent.Callable;

public interface ContextStrategy {

    Runnable wrapInCurrentContext(Runnable runnable);

    Callable wrapInCurrentContext(Callable callable);

    void saveContextForThread(Thread thread);

    void attachContextForThread(Thread thread);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy