![]() |
Diffusion Apple API 6.12.1
Unified Client Library for iOS, tvOS and OS X / macOS
|
Diffusion data type implementations. More...
#include <PTDiffusionDataTypes.h>
Class Methods | |
| (id< PTDiffusionDataType >) | + binary |
| (id< PTDiffusionDataType >) | + doubleFloat |
| (id< PTDiffusionDataType >) | + int64 |
| (id< PTDiffusionDataType >) | + json |
| (id< PTDiffusionDataType >) | + string |
| (id< PTDiffusionDataType >) | + recordV2 |
Diffusion data type implementations.
| + (id< PTDiffusionDataType >) binary |
Data type that supports arbitrary binary data.
| + (id< PTDiffusionDataType >) doubleFloat |
Data type that supports double-precision floating point numbers (Eight-byte IEEE 754) presented as NSNumber instances.
The integer value is serialized as CBOR-format binary. A serialized value can be read using the json datatype.
This data type does not support binary deltas but does support nil values.
| + (id< PTDiffusionDataType >) int64 |
Data type that supports 64-bit, signed integer values presented as NSNumber instances.
The integer value is serialized as CBOR-format binary. A serialized value can be read using the json datatype.
This data type does not support binary deltas but does support nil values.
| + (id< PTDiffusionDataType >) json |
Data type that supports JSON "JavaScript Object Notation", a lightweight data-interchange format, serialized as CBOR-format binary.
| + (id< PTDiffusionDataType >) recordV2 |
Data type that supports data in the form of records and fields.
This data type supports binary deltas but does not support nil values.
| + (id< PTDiffusionDataType >) string |
Data type that supports string values presented as NSString instances.
The string value is serialized as CBOR-format binary. A serialized value can be read using the json datatype.
This data type supports binary deltas and nil values.