Extends
Methods
-
propertyValuesForType(samplesType)
-
Get the property values for a given samples type.
Parameters:
Name Type Description samplesTypemodule:domain~DatumSamplesType the type of property values to return
- Inherited From:
Returns:
the property values for the given type, or undefined if none available
- Type
- Array
-
toJsonEncoding( [registry])
-
Get this object as a standard JSON encoded string value.
This method returns the JSON form of the result of StreamDatum#toJsonObject().
Parameters:
Name Type Argument Description registrymodule:util~DatumStreamMetadataRegistry <optional>
a stream metadata registry to encode as a registry-indexed stream datum
- Inherited From:
Returns:
the JSON encoded string
- Type
- string
-
toJsonObject( [registry])
-
Get this object as an array suitable for encoding into a standard stream datum JSON string.
This method can encode the datum into an array using one of two ways, depending on whether the
registryargument is provided. When provided, the first array element will be the stream metadata index based on calling DatumStreamMetadataRegistry#indexOfMetadataStreamId(). Otherwise the first array element will be the stream ID itself.For example if a registry is used, the resulting array might look like this:
[0, 1650667326308, 12326, null, 230.19719, 50.19501, 6472722]while without a registry the array might look like this:
["7714f762-2361-4ec2-98ab-7e96807b32a6", 1650667326308, 12326, null, 230.19719, 50.19501, 6472722]Parameters:
Name Type Argument Description registrymodule:util~DatumStreamMetadataRegistry <optional>
a stream metadata registry to encode as a registry-indexed stream datum
- Inherited From:
Returns:
the datum stream array object
- Type
- Array
-
toObject(meta)
-
Get this instance as a simple object.
The following basic properties will be set on the returned object:
streamId- the stream IDdate- the timestampsourceId- the metadata source IDnodeIdorlocationId- either the node ID or location ID from the metadatatags- any tags (as an Array)
Beyond that, all instantaneous, accumulating, and status properties will be included. If duplicate property names exist between the different classifications, the first-available value will be used.
Parameters:
Name Type Description metamodule:domain~DatumStreamMetadata a metadata instance to encode the property names with
- Inherited From:
Returns:
an object populated with all available properties
- Type
- Object