ScanamoPekko

org.scanamo.ScanamoPekko
See theScanamoPekko companion object

ScanamoPekko is a ScanamoClient that uses Pekko (the Akka alternative), which returns either scala.concurrent.Future or org.apache.pekko.stream.scaladsl.Source based on the kind of execution used.

This is a port of ScanamoAlpakka, which has since been removed from the core Scanamo project.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def execFuture[A](op: ScanamoOps[A]): Future[A]

Inherited methods

def exec[A](op: ScanamoOps[A]): Source[A]

Execute the operations built with org.scanamo.Table

Execute the operations built with org.scanamo.Table

Attributes

Inherited from:
ScanamoClient
def execT[M[_] : Monad, A](hoist: FunctionK[Source, M])(op: ScanamoOpsT[M, A]): M[A]

Execute the operations built with org.scanamo.Table with effects in the monad M threaded in.

Execute the operations built with org.scanamo.Table with effects in the monad M threaded in.

Attributes

Inherited from:
ScanamoClient