Uses of Class
software.amazon.lambda.durable.testing.LocalDurableTestRunner
Packages that use LocalDurableTestRunner
-
Uses of LocalDurableTestRunner in software.amazon.lambda.durable.testing
Methods in software.amazon.lambda.durable.testing that return LocalDurableTestRunnerModifier and TypeMethodDescriptionstatic <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(Class<I> inputType, BiFunction<I, DurableContext, O> handlerFn) Creates a LocalDurableTestRunner with default configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(Class<I> inputType, BiFunction<I, DurableContext, O> handlerFn, DurableConfig config) Creates a LocalDurableTestRunner that uses a custom configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(Class<I> inputType, DurableHandler<I, O> handler) Creates a LocalDurableTestRunner from a DurableHandler instance, automatically extracting the configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(TypeToken<I> inputType, BiFunction<I, DurableContext, O> handlerFn) Creates a LocalDurableTestRunner with default configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(TypeToken<I> inputType, BiFunction<I, DurableContext, O> handlerFn, DurableConfig config) Creates a LocalDurableTestRunner that uses a custom configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(TypeToken<I> inputType, DurableHandler<I, O> handler) Creates a LocalDurableTestRunner from a DurableHandler instance, automatically extracting the configuration.