Uses of Class
software.amazon.lambda.durable.execution.ExecutionManager
Packages that use ExecutionManager
Package
Description
-
Uses of ExecutionManager in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable with parameters of type ExecutionManagerModifier and TypeMethodDescriptionstatic DurableContextDurableContext.createChildContext(ExecutionManager executionManager, DurableConfig durableConfig, com.amazonaws.services.lambda.runtime.Context lambdaContext, String contextId) Creates a child context without registering the current thread. -
Uses of ExecutionManager in software.amazon.lambda.durable.logging
Constructors in software.amazon.lambda.durable.logging with parameters of type ExecutionManagerModifierConstructorDescriptionDurableLogger(org.slf4j.Logger delegate, ExecutionManager executionManager, String requestId, boolean suppressReplayLogs) -
Uses of ExecutionManager in software.amazon.lambda.durable.operation
Constructors in software.amazon.lambda.durable.operation with parameters of type ExecutionManagerModifierConstructorDescriptionBaseDurableOperation(String operationId, String name, software.amazon.awssdk.services.lambda.model.OperationType operationType, TypeToken<T> resultTypeToken, SerDes resultSerDes, ExecutionManager executionManager) Convenience constructor for root-context operations where parentId is null.protectedBaseDurableOperation(String operationId, String name, software.amazon.awssdk.services.lambda.model.OperationType operationType, TypeToken<T> resultTypeToken, SerDes resultSerDes, ExecutionManager executionManager, String parentId) CallbackOperation(String operationId, String name, TypeToken<T> resultTypeToken, CallbackConfig config, ExecutionManager executionManager) Convenience constructor for root-context operations where parentId is null.CallbackOperation(String operationId, String name, TypeToken<T> resultTypeToken, CallbackConfig config, ExecutionManager executionManager, String parentId) ChildContextOperation(String operationId, String name, Function<DurableContext, T> function, TypeToken<T> resultTypeToken, SerDes resultSerDes, ExecutionManager executionManager, DurableConfig durableConfig, com.amazonaws.services.lambda.runtime.Context lambdaContext, String parentId) InvokeOperation(String operationId, String name, String functionName, U payload, TypeToken<T> resultTypeToken, InvokeConfig config, ExecutionManager executionManager) Convenience constructor for root-context operations where parentId is null.InvokeOperation(String operationId, String name, String functionName, U payload, TypeToken<T> resultTypeToken, InvokeConfig config, ExecutionManager executionManager, String parentId) StepOperation(String operationId, String name, Supplier<T> function, TypeToken<T> resultTypeToken, StepConfig config, ExecutionManager executionManager, DurableLogger durableLogger, DurableConfig durableConfig) Convenience constructor for root-context operations where parentId is null.StepOperation(String operationId, String name, Supplier<T> function, TypeToken<T> resultTypeToken, StepConfig config, ExecutionManager executionManager, DurableLogger durableLogger, DurableConfig durableConfig, String parentId) WaitOperation(String operationId, String name, Duration duration, ExecutionManager executionManager) Convenience constructor for root-context operations where parentId is null.WaitOperation(String operationId, String name, Duration duration, ExecutionManager executionManager, String parentId)