The framework core type of the object, i.e. the name of the interface that defines the object's shape.
External ID associated with this object (optional)
A topic specification used for routing IO values from external sources to Coaty-defined IO actors or from Coaty-defined IO sources to external sinks (optional).
Only used for associating routes that are not created by an IO router, but defined by an external non-Coaty component.
Marks an object that is no longer in use. The concrete definition meaning of this property is defined by the application. The property value is optional and should default to false.
Unique ID of Location object that this object has been associated with (optional).
The name/description of the object
Unique ID of the object
The concrete type name of the object.
The name should be in a canonical form following the naming convention
for Java packages to avoid name collisions. All framework core types use
the form coaty.<InterfaceName>
, e.g. coaty.CoatyObject
(see constants
in CoreTypes
class).
Unique ID of parent/superordinate object (optional)
The update rate (in milliseconds) for publishing IoValue events:
The IO router specifies the recommended update rate in Associate event data. If undefined, there is no limit on the rate of published events.
Determines whether IO values published by IO sources or received by IO actors should be treated as raw data that is not encoded/decoded as JSON objects.
In order to associate an IO source with an IO actor their values of this property must match, i.e. both properties must be either true or false to ensure that IO values transmitted between an IO source and and an IO actor can be properly encoded and decoded on each side.
Set this property to true to indicate that the IO source or IO actor
should handle IO values in raw data format, i.e as a byte array of type
Uint8Array
(or Buffer
in Node.js, a subclass thereof).
If set to false (default), the IO values sent by an IO source should be encodable as JSON and decodable as JSON by an associated IO actor.
Generated using TypeDoc
Defines meta information of an IO point.
This abstract base object has no associated framework base object type. For instantiation use one of the concrete subtypes
IoSource
orIoActor
.