Package io.temporal.common.converter
Class DefaultDataConverter
- java.lang.Object
-
- io.temporal.common.converter.DefaultDataConverter
-
- All Implemented Interfaces:
DataConverter
public class DefaultDataConverter extends java.lang.Object
ADataConverter
that delegates payload conversion to type specificPayloadConverter
instances, and delegates failure conversions to aFailureConverter
.
-
-
Field Summary
Fields Modifier and Type Field Description static DataConverter
STANDARD_INSTANCE
Default data converter that is used for all objects if not overridden byWorkflowClientOptions.Builder.setDataConverter(DataConverter)
orGlobalDataConverter.register(DataConverter)
(less preferred).static PayloadConverter[]
STANDARD_PAYLOAD_CONVERTERS
-
Constructor Summary
Constructors Constructor Description DefaultDataConverter(PayloadConverter... converters)
Creates instance from ordered array of converters and a default failure converter.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description io.temporal.api.failure.v1.Failure
exceptionToFailure(java.lang.Throwable throwable)
Serialize an existing Throwable object into a Failure object.TemporalFailure
failureToException(io.temporal.api.failure.v1.Failure failure)
Instantiate an appropriate Java Exception from a serialized Failure object.<T> T
fromPayload(io.temporal.api.common.v1.Payload payload, java.lang.Class<T> valueClass, java.lang.reflect.Type valueType)
<T> T
fromPayloads(int index, java.util.Optional<io.temporal.api.common.v1.Payloads> content, java.lang.Class<T> parameterType, java.lang.reflect.Type genericParameterType)
Implements conversion of a singlePayload
from the serializedPayloads
.static DefaultDataConverter
newDefaultInstance()
Creates a new instance ofDefaultDataConverter
populated with the default list of payload converters and a default failure converter.static void
setDefaultDataConverter(DataConverter converter)
Deprecated.<T> java.util.Optional<io.temporal.api.common.v1.Payload>
toPayload(T value)
java.util.Optional<io.temporal.api.common.v1.Payloads>
toPayloads(java.lang.Object... values)
Implements conversion of a list of values.DataConverter
withContext(SerializationContext context)
A correct implementation of this interface should have a fully functional "contextless" implementation.DefaultDataConverter
withFailureConverter(FailureConverter failureConverter)
Modifies thisDefaultDataConverter
by overriding itsFailureConverter
.DefaultDataConverter
withPayloadConverterOverrides(PayloadConverter... overrideConverters)
Modifies thisDefaultDataConverter
by overriding some of itsPayloadConverter
s.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.temporal.common.converter.DataConverter
fromPayloads
-
-
-
-
Field Detail
-
STANDARD_PAYLOAD_CONVERTERS
public static final PayloadConverter[] STANDARD_PAYLOAD_CONVERTERS
-
STANDARD_INSTANCE
public static final DataConverter STANDARD_INSTANCE
Default data converter that is used for all objects if not overridden byWorkflowClientOptions.Builder.setDataConverter(DataConverter)
orGlobalDataConverter.register(DataConverter)
(less preferred).This data converter is also always used (regardless of whether or not users have supplied their own converter) to perform serialization of values essential for functionality of Temporal SDK, Server, tctl or WebUI:
- Local Activity, Version, MutableSideEffect Markers metadata like id, time, name
- Search attribute values
- Stacktrace query return value
-
-
Constructor Detail
-
DefaultDataConverter
public DefaultDataConverter(PayloadConverter... converters)
Creates instance from ordered array of converters and a default failure converter. When converting an object to payload the array of converters is iterated from the beginning until one of the converters successfully converts the value.
-
-
Method Detail
-
setDefaultDataConverter
public static void setDefaultDataConverter(DataConverter converter)
Deprecated.
-
newDefaultInstance
public static DefaultDataConverter newDefaultInstance()
Creates a new instance ofDefaultDataConverter
populated with the default list of payload converters and a default failure converter.
-
withPayloadConverterOverrides
public DefaultDataConverter withPayloadConverterOverrides(PayloadConverter... overrideConverters)
Modifies thisDefaultDataConverter
by overriding some of itsPayloadConverter
s. Every payload converter fromoverrideConverters
either replaces existing payload converter with the same encoding type, or is added to the end of payload converters list.
-
withFailureConverter
@Nonnull public DefaultDataConverter withFailureConverter(@Nonnull FailureConverter failureConverter)
Modifies thisDefaultDataConverter
by overriding itsFailureConverter
.WARNING: Most users should _never_ need to override the default failure converter. To encrypt the content of failures, see
CodecDataConverter
instead.- Parameters:
failureConverter
- The failure converter to use- Throws:
java.lang.NullPointerException
- if failureConverter is null
-
toPayload
public <T> java.util.Optional<io.temporal.api.common.v1.Payload> toPayload(T value) throws DataConverterException
- Specified by:
toPayload
in interfaceDataConverter
- Parameters:
value
- value to convert- Returns:
- a
Payload
which is a protobuf message containing byte-array serialized representation ofvalue
. Optional here is for legacy and backward compatibility reasons. This Optional is expected to always be filled. - Throws:
DataConverterException
- if conversion fails
-
fromPayload
public <T> T fromPayload(io.temporal.api.common.v1.Payload payload, java.lang.Class<T> valueClass, java.lang.reflect.Type valueType) throws DataConverterException
- Specified by:
fromPayload
in interfaceDataConverter
- Throws:
DataConverterException
-
toPayloads
public java.util.Optional<io.temporal.api.common.v1.Payloads> toPayloads(java.lang.Object... values) throws DataConverterException
Description copied from interface:DataConverter
Implements conversion of a list of values.- Specified by:
toPayloads
in interfaceDataConverter
- Parameters:
values
- Java values to convert to String.- Returns:
- converted value. Return empty Optional if values are empty.
- Throws:
DataConverterException
- if conversion of the value passed as parameter failed for any reason.
-
fromPayloads
public <T> T fromPayloads(int index, java.util.Optional<io.temporal.api.common.v1.Payloads> content, java.lang.Class<T> parameterType, java.lang.reflect.Type genericParameterType) throws DataConverterException
Description copied from interface:DataConverter
Implements conversion of a singlePayload
from the serializedPayloads
.- Specified by:
fromPayloads
in interfaceDataConverter
- Parameters:
index
- index of the value in the payloadscontent
- serialized value to convert to Java objects.parameterType
- type of the value stored in thecontent
genericParameterType
- generic type of the value stored in thecontent
- Returns:
- converted Java object
- Throws:
DataConverterException
- if conversion of the data passed as parameter failed for any reason.
-
failureToException
@Nonnull public TemporalFailure failureToException(@Nonnull io.temporal.api.failure.v1.Failure failure)
Description copied from interface:DataConverter
Instantiate an appropriate Java Exception from a serialized Failure object. The default implementation delegates the conversion process to an instance ofFailureConverter
, using this data converter for payload decoding.- Specified by:
failureToException
in interfaceDataConverter
- Parameters:
failure
- Failure protobuf object to deserialize into an exception
-
exceptionToFailure
@Nonnull public io.temporal.api.failure.v1.Failure exceptionToFailure(@Nonnull java.lang.Throwable throwable)
Description copied from interface:DataConverter
Serialize an existing Throwable object into a Failure object. The default implementation delegates the conversion process to an instance ofFailureConverter
, using this data converter for payload encoding.- Specified by:
exceptionToFailure
in interfaceDataConverter
- Parameters:
throwable
- a Throwable object to serialize into a Failure protobuf object
-
withContext
@Nonnull public DataConverter withContext(@Nonnull SerializationContext context)
Description copied from interface:DataConverter
A correct implementation of this interface should have a fully functional "contextless" implementation. Temporal SDK will call this method when a knowledge of the context exists, butDataConverter
can be used directly by user code and sometimes SDK itself without any context.Note: this method is expected to be cheap and fast. Temporal SDK doesn't always cache the instances and may be calling this method very often. Users are responsible to make sure that this method doesn't recreate expensive objects like Jackson's
ObjectMapper
on every call.- Specified by:
withContext
in interfaceDataConverter
- Parameters:
context
- provides information to the data converter about the abstraction the data belongs to- Returns:
- an instance of DataConverter that may use the provided
context
for serialization - See Also:
SerializationContext
-
-