Uses of Class
software.amazon.lambda.durable.config.InvokeConfig
Packages that use InvokeConfig
Package
Description
-
Uses of InvokeConfig in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable with parameters of type InvokeConfigModifier and TypeMethodDescriptiondefault <T,U> T DurableContext.invoke(String name, String functionName, U payload, Class<T> resultType, InvokeConfig config) Invokes another Lambda function with custom configuration, blocking until the result is available.default <T,U> T DurableContext.invoke(String name, String functionName, U payload, TypeToken<T> resultType, InvokeConfig config) Invokes another Lambda function using aTypeTokenand custom configuration, blocking until complete.default <T,U> DurableFuture<T> DurableContext.invokeAsync(String name, String functionName, U payload, Class<T> resultType, InvokeConfig config) Invokes another Lambda function using aTypeTokenand custom configuration, blocking until complete.<T,U> DurableFuture<T> DurableContext.invokeAsync(String name, String functionName, U payload, TypeToken<T> resultType, InvokeConfig config) Asynchronously invokes another Lambda function using aTypeTokenand custom configuration. -
Uses of InvokeConfig in software.amazon.lambda.durable.config
Methods in software.amazon.lambda.durable.config that return InvokeConfig -
Uses of InvokeConfig in software.amazon.lambda.durable.context
Methods in software.amazon.lambda.durable.context with parameters of type InvokeConfigModifier and TypeMethodDescription<T,U> DurableFuture<T> DurableContextImpl.invokeAsync(String name, String functionName, U payload, TypeToken<T> resultType, InvokeConfig config) -
Uses of InvokeConfig in software.amazon.lambda.durable.operation
Constructors in software.amazon.lambda.durable.operation with parameters of type InvokeConfigModifierConstructorDescriptionInvokeOperation(OperationIdentifier operationIdentifier, String functionName, I payload, TypeToken<T> resultTypeToken, InvokeConfig config, DurableContextImpl durableContext)