Uses of Class
software.amazon.lambda.durable.config.RunInChildContextConfig
Packages that use RunInChildContextConfig
Package
Description
-
Uses of RunInChildContextConfig in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable with parameters of type RunInChildContextConfigModifier and TypeMethodDescriptiondefault <T> TDurableContext.runInChildContext(String name, Class<T> resultType, Function<DurableContext, T> func, RunInChildContextConfig config) Runs a function in a child context, blocking until it completes.default <T> TDurableContext.runInChildContext(String name, TypeToken<T> resultType, Function<DurableContext, T> func, RunInChildContextConfig config) Runs a function in a child context, blocking until it completes.default <T> DurableFuture<T>DurableContext.runInChildContextAsync(String name, Class<T> resultType, Function<DurableContext, T> func, RunInChildContextConfig config) Runs a function in a child context, blocking until it completes.<T> DurableFuture<T>DurableContext.runInChildContextAsync(String name, TypeToken<T> resultType, Function<DurableContext, T> func, RunInChildContextConfig config) Runs a function in a child context, blocking until it completes. -
Uses of RunInChildContextConfig in software.amazon.lambda.durable.config
Methods in software.amazon.lambda.durable.config that return RunInChildContextConfigModifier and TypeMethodDescriptionRunInChildContextConfig.Builder.build()Builds the RunInChildContextConfig instance. -
Uses of RunInChildContextConfig in software.amazon.lambda.durable.context
Methods in software.amazon.lambda.durable.context with parameters of type RunInChildContextConfigModifier and TypeMethodDescription<T> DurableFuture<T>DurableContextImpl.runInChildContextAsync(String name, TypeToken<T> resultType, Function<DurableContext, T> func, RunInChildContextConfig config) Runs a function in a child context, blocking until it completes. -
Uses of RunInChildContextConfig in software.amazon.lambda.durable.operation
Constructors in software.amazon.lambda.durable.operation with parameters of type RunInChildContextConfigModifierConstructorDescriptionChildContextOperation(OperationIdentifier operationIdentifier, Function<DurableContext, T> function, TypeToken<T> resultTypeToken, RunInChildContextConfig config, DurableContextImpl durableContext) ChildContextOperation(OperationIdentifier operationIdentifier, Function<DurableContext, T> function, TypeToken<T> resultTypeToken, RunInChildContextConfig config, DurableContextImpl durableContext, ConcurrencyOperation<?> parentOperation)