Skip to content

trackkit / dispatcher/types / ResolvedConnectionOptions

Interface: ResolvedConnectionOptions ​

Defined in: dispatcher/types.ts:178

Internal

Fully resolved connection options with defaults applied.

See ​

ConnectionOptions

Extends ​

Properties ​

monitor ​

monitor: boolean

Defined in: dispatcher/types.ts:145

Enable network connection monitoring.

When true, the dispatcher may record reachability state and adapt behaviour when offline.

Inherited from ​

ConnectionOptions.monitor


offlineStorage ​

offlineStorage: boolean

Defined in: dispatcher/types.ts:152

Store events offline when network is unavailable.

Exact storage semantics are implementation-dependent.

Inherited from ​

ConnectionOptions.offlineStorage


checkInterval ​

checkInterval: number

Defined in: dispatcher/types.ts:157

Interval in milliseconds to check network connection status.

Inherited from ​

ConnectionOptions.checkInterval


syncInterval ​

syncInterval: number

Defined in: dispatcher/types.ts:162

Interval in milliseconds to sync offline events when back online.

Inherited from ​

ConnectionOptions.syncInterval


slowThreshold ​

slowThreshold: number

Defined in: dispatcher/types.ts:169

Threshold in milliseconds to consider a request "slow".

Used by performance monitoring / diagnostics.

Inherited from ​

ConnectionOptions.slowThreshold

Released under the MIT License.