type

Conn

Conn : Entity

Connector for communication to a remote system. See Connectors

meta abstract slots id

Unique identifier for entity in its project

spec

Type of this entity

conn

Marker tag for Conn type

actorTimeout

Timeout for messages send to the connector's actor thread

connErr

Error message associated when connStatus indicates an error condition

connLinger

Linger timeout used to keep a connector open

connOpenRetryFreq

Duration used for connector open retries

connPingFreq

Duration used to configure the auto-ping feature on a given connector

connState

Current connection open/close state of a connector

connStatus

Current status of a connector as one of the predefined strings See Connectors

connTuningRef

Reference to a tuning configuration defined by a ConnTuning rec

disabled

Sets connector into disabled state to prevent communication

conn Marker

Marker tag for Conn type

actorTimeout Duration?

Timeout for messages send to the connector's actor thread. It must be a number with a duration unit. If omitted a default of 1min is used. This value effectively determines how long a blocking remote request should take before raising a timeout error. For protocols which communicate via HTTP/TCP it is also used to configure the socket's receive timeout. See Connector Tuning

connErr Str? <transient>

Error message associated when connStatus indicates an error condition. See Connectors

connLinger Duration?

Linger timeout used to keep a connector open. If not configured then a default of 30sec is used. See Connector Tuning

connOpenRetryFreq Duration?

Duration used for connector open retries. When a connector should be pinned opened for application use, then this frequency is used to periodically attempt retries. For example if a down connector has watched points, then this frequency is used to determine how often we retry to reopen the connection. The default is 10sec if not specified. See Connector Tuning

connPingFreq Duration?

Duration used to configure the auto-ping feature on a given connector. When this tag is configured the connector will automatically attempt a ping based on the configured frequency. For connectors which might not have watched points this ensures periodic checks of the connectivity status. If this tag is not defined on a connector then the feature is disabled. See Connector Tuning

connState ConnState? <transient>

Current connection open/close state of a connector. See Connectors

connStatus ConnStatus? <transient>

Current status of a connector as one of the predefined strings See Connectors

connTuningRef Ref? <of:ConnTuning>

Reference to a tuning configuration defined by a ConnTuning rec. See Connector Tuning

disabled Marker?

Sets connector into disabled state to prevent communication

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST