PravegaTable

zio.pravega.PravegaTable$
See thePravegaTable companion trait

Pravega Table API.

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

def fromScope(scope: String): ZLayer[Scope & ClientConfig, Throwable, PravegaTable]
def fromScope(scope: String, clientConfig: ClientConfig): ZLayer[Scope, Throwable, PravegaTable]
def readerFlow[K, V](tableName: String, settings: TableReaderSettings[K, V]): ZPipeline[PravegaTable, Throwable, K, Option[TableEntry[V]]]
def sink[K, V](tableName: String, settings: TableWriterSettings[K, V], combine: (V, V) => V): ZSink[PravegaTable, Throwable, (K, V), Nothing, Unit]
def source[K, V](tableName: String, settings: TableReaderSettings[K, V]): ZStream[PravegaTable, Throwable, TableEntry[V]]
def writerFlow[K, V](tableName: String, settings: TableWriterSettings[K, V], combine: (V, V) => V): ZPipeline[PravegaTable, Throwable, (K, V), (K, V)]

Create a writer flow _____ (K,V) --->|_____|--> (K, V)

Create a writer flow _____ (K,V) --->|_____|--> (K, V)

Attributes