View Source Electric.Postgres.ReplicationClient (electric v0.7.2)

A client module for Postgres logical replication.

Summary

Types

@type step() ::
  :disconnected
  | :connected
  | :create_publication
  | :create_slot
  | :set_display_setting
  | :ready_to_stream
  | :streaming

Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

start_link(connection_opts, replication_opts, connection_manager \\ nil)

View Source