Uses of Interface
io.fluxzero.common.MemoizingFunction
Packages that use MemoizingFunction
Package
Description
-
Uses of MemoizingFunction in io.fluxzero.common
Classes in io.fluxzero.common that implement MemoizingFunctionModifier and TypeClassDescriptionclassA default implementation of theMemoizingFunctioninterface that provides caching functionality for computed function results.Methods in io.fluxzero.common that return MemoizingFunctionModifier and TypeMethodDescriptiondefault <K1> @NonNull MemoizingFunction<K1, R> MemoizingBiFunction.compose(@NonNull Function<? super K1, Map.Entry<? extends T, ? extends U>> before) Creates aMemoizingFunctionby composing this memoizing bi-function with an input transformation.default <K1> @NonNull MemoizingFunction<K1, V> Composes this memoizing function with another function.static <K,V> MemoizingFunction <K, V> -
Uses of MemoizingFunction in io.fluxzero.sdk.common
Methods in io.fluxzero.sdk.common that return MemoizingFunctionModifier and TypeMethodDescriptionstatic <K,V> MemoizingFunction <K, V> Memoizes the given function using a default memoization strategy.static <K,V> MemoizingFunction <K, V> Memoizes the given function using a time-based lifespan and Fluxzero's internal clock. -
Uses of MemoizingFunction in io.fluxzero.sdk.common.serialization
Methods in io.fluxzero.sdk.common.serialization that return MemoizingFunctionModifier and TypeMethodDescriptionprotected MemoizingFunction<Type, Object> DeserializingObject.getObjectFunction()Returns the memoized deserialization function used to deserialize the payload. -
Uses of MemoizingFunction in io.fluxzero.testserver.websocket
Methods in io.fluxzero.testserver.websocket with parameters of type MemoizingFunctionModifier and TypeMethodDescriptionstatic io.undertow.server.handlers.PathHandlerWebsocketDeploymentUtils.deployFromSession(MemoizingFunction<jakarta.websocket.Session, jakarta.websocket.Endpoint> endpointSupplier, String path, io.undertow.server.handlers.PathHandler pathHandler) Deploys a WebSocket server endpoint using a specified session-to-endpoint mapping function, path, and handler.