io.virtdata.libbasics.shared.stateful.Swap 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 stored in the named value, and the previously
* stored value will be returned. A default value to return may be provided
* in case there was no previously stored value under the given name.
*/
@ThreadSafeMapper
@Categories({Category.state})
public class Swap implements Function