Package io.temporal.common.converter
Class ProtobufPayloadConverter
- java.lang.Object
-
- io.temporal.common.converter.AbstractProtobufPayloadConverter
-
- io.temporal.common.converter.ProtobufPayloadConverter
-
- All Implemented Interfaces:
PayloadConverter
public final class ProtobufPayloadConverter extends AbstractProtobufPayloadConverter implements PayloadConverter
-
-
Field Summary
-
Fields inherited from class io.temporal.common.converter.AbstractProtobufPayloadConverter
log
-
-
Constructor Summary
Constructors Constructor Description ProtobufPayloadConverter()ProtobufPayloadConverter(boolean excludeProtobufMessageTypes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TfromData(io.temporal.api.common.v1.Payload content, java.lang.Class<T> valueClass, java.lang.reflect.Type valueType)Implements conversion of a single value.java.lang.StringgetEncodingType()EachPayloadConverterhas an Encoding Type that it handles.java.util.Optional<io.temporal.api.common.v1.Payload>toData(java.lang.Object value)Implements conversion of a list of values.-
Methods inherited from class io.temporal.common.converter.AbstractProtobufPayloadConverter
addMessageType, checkMessageType
-
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.PayloadConverter
withContext
-
-
-
-
Method Detail
-
getEncodingType
public java.lang.String getEncodingType()
Description copied from interface:PayloadConverterEachPayloadConverterhas an Encoding Type that it handles. EachPayloadConvertershould add the information about its Encoding Type into thePayloadit produces insidePayloadConverter.toData(Object)by associating it with theEncodingKeys.METADATA_ENCODING_KEYkey attached to thePayload's Metadata usingPayload.Builder.putMetadata(String, ByteString).- Specified by:
getEncodingTypein interfacePayloadConverter- Returns:
- encoding type that this converter handles.
-
toData
public java.util.Optional<io.temporal.api.common.v1.Payload> toData(java.lang.Object value) throws DataConverterExceptionDescription copied from interface:PayloadConverterImplements conversion of a list of values.- Specified by:
toDatain interfacePayloadConverter- Parameters:
value- Java value to convert.- Returns:
- converted value
- Throws:
DataConverterException- if conversion of the value passed as parameter failed for any reason.- See Also:
getEncodingType javadoc for an important implementation detail
-
fromData
public <T> T fromData(io.temporal.api.common.v1.Payload content, java.lang.Class<T> valueClass, java.lang.reflect.Type valueType) throws DataConverterExceptionDescription copied from interface:PayloadConverterImplements conversion of a single value.- Specified by:
fromDatain interfacePayloadConverter- Parameters:
content- Serialized value to convert to a Java object.valueClass- type of the value stored in thecontentvalueType- 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.
-
-