View Source Hyperliquid.WebSocket.Supervisor (hyperliquid v0.2.2)

Supervisor for the WebSocket subsystem.

Supervises:

  • Registry for connection lookups
  • DynamicSupervisor for connection processes
  • Manager for orchestration

Usage

Add to your application supervision tree:

children = [
  Hyperliquid.WebSocket.Supervisor,
  # ... other children
]

Supervisor.start_link(children, strategy: :one_for_one)

Summary

Functions

Returns a specification to start this module under a supervisor.

Functions

Returns a specification to start this module under a supervisor.

See Supervisor.