Documentation
¶
Overview ¶
Package encoded contains wrappers that are used for binary payloads deserialization.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Value ¶
type Value interface {
// HasValue return whether there is value encoded.
HasValue() bool
// Get extract the encoded value into strong typed value pointer.
Get(valuePtr interface{}) error
}
Value is used to encapsulate/extract encoded value from workflow/activity.
type Values ¶
type Values interface {
// HasValues return whether there are values encoded.
HasValues() bool
// Get extract the encoded values into strong typed value pointers.
Get(valuePtr ...interface{}) error
}
Values is used to encapsulate/extract encoded one or more values from workflow/activity.
Click to show internal directories.
Click to hide internal directories.