Executor

ldbc.dsl.Executor
See theExecutor companion object
trait Executor[F[_], T]

A trait that represents the execution of a query.

Type parameters

F

The effect type

T

The result type of the query

Attributes

Companion
object
Source
Executor.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def commit(connection: Connection[F])(using LogHandler[F]): F[T]

Functions to manage the processing of connections for writing.

Functions to manage the processing of connections for writing.

Attributes

Source
Executor.scala
def readOnly(connection: Connection[F])(using LogHandler[F]): F[T]

Functions for managing the processing of connections in a read-only manner.

Functions for managing the processing of connections in a read-only manner.

Attributes

Source
Executor.scala
def rollback(connection: Connection[F])(using LogHandler[F]): F[T]

Functions to manage the processing of connections, always rolling back.

Functions to manage the processing of connections, always rolling back.

Attributes

Source
Executor.scala
def transaction(connection: Connection[F])(using LogHandler[F]): F[T]

Functions to manage the processing of connections in a transaction.

Functions to manage the processing of connections in a transaction.

Attributes

Source
Executor.scala