Package io.temporal.common.converter
Class RawValue
- java.lang.Object
-
- io.temporal.common.converter.RawValue
-
public final class RawValue extends java.lang.ObjectRawValue is a representation of an unconverted, raw payload.This type can be used as a parameter or return type in workflows and activities to pass through a raw payload. Encoding/decoding of the payload is still done by the system.
-
-
Constructor Summary
Constructors Constructor Description RawValue(io.temporal.api.common.v1.Payload payload)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)io.temporal.api.common.v1.PayloadgetPayload()inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getPayload
public io.temporal.api.common.v1.Payload getPayload()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-