io.virtdata.libbasics.shared.stateful.Load Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.libbasics.shared.stateful;
import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.Example;
import io.virtdata.annotations.ThreadSafeMapper;
import io.virtdata.libbasics.core.threadstate.SharedState;
import java.util.HashMap;
import java.util.function.Function;
/**
* Load a named value from the per-thread state map.
* The previous input value will be forgotten, and the named value will replace it
* before the next function in the chain.
*/
@ThreadSafeMapper
@Categories({Category.state})
public class Load implements Function