PreparedCommand

skunk.PreparedCommand
See thePreparedCommand companion object
trait PreparedCommand[F[_], A]

A prepared command, valid for the life of its defining Session.

Attributes

Companion
object
Source
PreparedCommand.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Grouped members

Transformations

def mapK[G[_]](fk: FunctionK[F, G]): PreparedCommand[G, A]

Transform this PreparedCommand by a given FunctionK.

Transform this PreparedCommand by a given FunctionK.

Attributes

Source
PreparedCommand.scala

Value members

Abstract methods

def execute(args: A)(implicit origin: Origin): F[Completion]

Attributes

Source
PreparedCommand.scala

Concrete methods

def pipe(implicit origin: Origin): (F, A) => Completion

A Pipe that executes this PreparedCommand for each input value, yielding a stream of Completions.

A Pipe that executes this PreparedCommand for each input value, yielding a stream of Completions.

Attributes

Source
PreparedCommand.scala