Uses of Interface
software.amazon.lambda.durable.serde.SerDes
Packages that use SerDes
Package
Description
-
Uses of SerDes in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable that return SerDesMethods in software.amazon.lambda.durable with parameters of type SerDesModifier and TypeMethodDescriptionDurableConfig.Builder.withSerDes(SerDes serDes) Sets a custom SerDes implementation. -
Uses of SerDes in software.amazon.lambda.durable.config
Methods in software.amazon.lambda.durable.config that return SerDesModifier and TypeMethodDescriptionInvokeConfig.payloadSerDes()CallbackConfig.serDes()Returns the custom serializer for this callback, or null if not specified (uses default SerDes).InvokeConfig.serDes()MapConfig.serDes()ParallelBranchConfig.serDes()Returns the custom serializer for this step, or null if not specified (uses default SerDes).RunInChildContextConfig.serDes()Returns the custom serializer for this RunInChildContext operation, or null if not specified (uses default SerDes).StepConfig.serDes()Returns the custom serializer for this step, or null if not specified (uses default SerDes).WaitForConditionConfig.serDes()Returns the custom serializer, or null if not specified (uses default SerDes).Methods in software.amazon.lambda.durable.config with parameters of type SerDesModifier and TypeMethodDescriptionInvokeConfig.Builder.payloadSerDes(SerDes payloadSerDes) Sets a custom serializer for the invoke operation payload.Sets a custom serializer for the callback.Sets a custom serializer for the invoke result.Sets the custom serializer to use for serializing map items and results.Sets a custom serializer for the step.Sets a custom serializer for the step.Sets a custom serializer for the step.Sets a custom serializer for the waitForCondition operation.Constructors in software.amazon.lambda.durable.config with parameters of type SerDes -
Uses of SerDes in software.amazon.lambda.durable.operation
Methods in software.amazon.lambda.durable.operation with parameters of type SerDesModifier and TypeMethodDescriptionprotected <R> ChildContextOperation<R>ConcurrencyOperation.createItem(String operationId, String name, Function<DurableContext, R> function, TypeToken<R> resultType, SerDes serDes, OperationSubType branchSubType, DurableContextImpl parentContext) Creates a child context operation for a single item (branch or iteration).protected <R> ChildContextOperation<R>ConcurrencyOperation.enqueueItem(String name, Function<DurableContext, R> function, TypeToken<R> resultType, SerDes serDes, OperationSubType branchSubType) Creates and enqueues an item without starting execution.Constructors in software.amazon.lambda.durable.operation with parameters of type SerDesModifierConstructorDescriptionprotectedConcurrencyOperation(OperationIdentifier operationIdentifier, TypeToken<T> resultTypeToken, SerDes resultSerDes, DurableContextImpl durableContext, int maxConcurrency, Integer minSuccessful, Integer toleratedFailureCount) ParallelOperation(OperationIdentifier operationIdentifier, SerDes resultSerDes, DurableContextImpl durableContext, ParallelConfig config) protectedSerializableDurableOperation(OperationIdentifier operationIdentifier, TypeToken<T> resultTypeToken, SerDes resultSerDes, DurableContextImpl durableContext) Constructs a new durable operation.protectedSerializableDurableOperation(OperationIdentifier operationIdentifier, TypeToken<T> resultTypeToken, SerDes resultSerDes, DurableContextImpl durableContext, BaseDurableOperation parentOperation) -
Uses of SerDes in software.amazon.lambda.durable.serde
Classes in software.amazon.lambda.durable.serde that implement SerDesModifier and TypeClassDescriptionclassSerializer/Deserializer for Durable Execution Input and Output objects.classJackson-based implementation ofSerDes. -
Uses of SerDes in software.amazon.lambda.durable.util
Methods in software.amazon.lambda.durable.util with parameters of type SerDesModifier and TypeMethodDescriptionstatic software.amazon.awssdk.services.lambda.model.ErrorObjectExceptionHelper.buildErrorObject(Throwable throwable, SerDes serDes) build an ErrorObject from a Throwable