View Source Arangox.Connection (Arangox v0.7.0)

DBConnection implementation for Arangox.

Summary

Types

@type failover?() :: boolean()
@type t() :: %Arangox.Connection{
  auth: Arangox.Auth.t(),
  client: module(),
  cursors: map(),
  database: binary(),
  disconnect_on_error_codes: [integer()],
  endpoint: Arangox.endpoint(),
  failover?: boolean(),
  headers: Arangox.headers(),
  read_only?: boolean(),
  socket: any()
}

Functions

Link to this function

new(socket, client, endpoint, failover?, opts)

View Source