io.virtdata.libbasics.shared.stateful.Save 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;
/**
* Save the current input value at this point in the function chain to a thread-local variable name.
* The input value is unchanged, and available for the next function in the chain to use as-is.
*/
@ThreadSafeMapper
@Categories({Category.state})
public class Save implements Function