dev.cheleb.ziotapir.laminar

Members list

Type members

Classlikes

trait Session[UserToken <: WithToken]

Attributes

Supertypes
class Object
trait Matchable
class Any
Known subtypes
class SessionLive[UserToken]
class SessionLive[UserToken <: WithToken](using x$1: JsonCodec[UserToken]) extends Session[UserToken]

Attributes

Supertypes
trait Session[UserToken]
class Object
trait Matchable
class Any

Extensions

Extensions

extension [I, E <: Throwable, O](endpoint: Endpoint[Unit, I, E, O, Any])
def apply(payload: I): RIO[SameOriginBackendClient, O]

Call the endpoint with a payload, and get a ZIO back.

Call the endpoint with a payload, and get a ZIO back.

Attributes

def on(baseUri: Uri)(payload: I): RIO[DifferentOriginBackendClient, O]

Call the endpoint with a payload on a different backend than the origin, and get a ZIO back.

Call the endpoint with a payload on a different backend than the origin, and get a ZIO back.

Attributes

extension [I, E <: Throwable, O](endpoint: Endpoint[String, I, E, O, Any])
def apply[UserToken <: WithToken](payload: I)(using session: Session[UserToken]): RIO[SameOriginBackendClient, O]

Call the secured endpoint with a payload, and get a ZIO back.

Call the secured endpoint with a payload, and get a ZIO back.

Attributes

def on[UserToken <: WithToken](baseUri: Uri)(payload: I)(using session: Session[UserToken]): RIO[DifferentOriginBackendClient, O]

Call the secured endpoint with a payload on a different backend than the origin, and get a ZIO back.

Call the secured endpoint with a payload on a different backend than the origin, and get a ZIO back.

Attributes

extension [I, O](endpoint: Endpoint[Unit, I, Throwable, Stream[Throwable, O], ZioStreams])
def apply(payload: I): RIO[SameOriginBackendClient, Stream[Throwable, O]]

Call the endpoint with a payload, and get a ZIO back.

Call the endpoint with a payload, and get a ZIO back.

Attributes

def on(baseUri: Uri)(payload: I): RIO[DifferentOriginBackendClient, Stream[Throwable, O]]

Call the endpoint with a payload on a different backend than the origin, and get a ZIO back.

Call the endpoint with a payload on a different backend than the origin, and get a ZIO back.

Attributes

extension [I, O](endpoint: Endpoint[String, I, Throwable, Stream[Throwable, O], ZioStreams])
def apply[UserToken <: WithToken](payload: I)(using session: Session[UserToken]): RIO[SameOriginBackendClient, Stream[Throwable, O]]

Call the secured stream endpoint with a payload, and get a ZIO back.

Call the secured stream endpoint with a payload, and get a ZIO back.

Attributes

def on[UserToken <: WithToken](baseUri: Uri)(payload: I)(using session: Session[UserToken]): RIO[DifferentOriginBackendClient, Stream[Throwable, O]]

Call the secured stream endpoint with a payload on a different backend than the origin, and get a ZIO back.

Call the secured stream endpoint with a payload on a different backend than the origin, and get a ZIO back.

Attributes

extension [E <: Throwable, A](zio: ZIO[SameOriginBackendClient, E, A])
def emitTo(bus: EventBus[A]): Unit

Emit the result of the ZIO to an EventBus.

Emit the result of the ZIO to an EventBus.

Underlying request to the default backend.

Attributes

def emitTo(bus: EventBus[A], error: EventBus[E]): Unit

Emit the result and error of the ZIO to an EventBus.

Emit the result and error of the ZIO to an EventBus.

Underlying request to the default backend.

Attributes

def emitToEither(bus: EventBus[Either[E, A]]): Unit

Emit the result of the ZIO to an EventBus of Either.

Emit the result of the ZIO to an EventBus of Either.

Underlying request to the default backend.

Value parameters

bus

event bus to emit the result to

Attributes

def runJs: Unit

Run the ZIO in JS.

Run the ZIO in JS.

Attributes

def runJs(errorBus: EventBus[E]): Unit

Run the ZIO in JS, and emit the error to an EventBus.

Run the ZIO in JS, and emit the error to an EventBus.

Value parameters

errorBus

the event bus to emit the error to

Attributes

def toEventStream: EventStream[A]

Emit the result of the ZIO to an EventBus, and return the EventStream.

Emit the result of the ZIO to an EventBus, and return the EventStream.

Attributes

extension [E <: Throwable, A](zio: ZIO[DifferentOriginBackendClient, E, A])
def emitTo(bus: EventBus[A]): Unit

Emit the result of the ZIO to an EventBus.

Emit the result of the ZIO to an EventBus.

Underlying request to the default backend.

Attributes

def emitTo(bus: EventBus[A], error: EventBus[E]): Unit

Emit the result and error of the ZIO to an EventBus.

Emit the result and error of the ZIO to an EventBus.

Underlying request to the default backend.

Attributes

def emitToEither(bus: EventBus[Either[E, A]]): Unit

Emit the result of the ZIO to an EventBus of Either.

Emit the result of the ZIO to an EventBus of Either.

Underlying request to the default backend.

Value parameters

bus

event bus to emit the result to

Attributes

def runJs: Unit

Run the ZIO in JS.

Run the ZIO in JS.

Attributes

def runJs(errorBus: EventBus[E]): Unit

Run the ZIO in JS, and emit the error to an EventBus.

Run the ZIO in JS, and emit the error to an EventBus.

Value parameters

errorBus

the event bus to emit the error to

Attributes

def toEventStream: EventStream[A]

Emit the result of the ZIO to an EventBus, and return the EventStream.

Emit the result of the ZIO to an EventBus, and return the EventStream.

Attributes

extension (zio: ZIO[SameOriginBackendClient, Throwable, ZStream[Any, Throwable, Byte]])
def jsonl[I : JsonCodec, O](f: I => Task[O]): Unit

Parse a JSONL stream.

Parse a JSONL stream.

Attributes

extension (zio: ZIO[DifferentOriginBackendClient, Throwable, ZStream[Any, Throwable, Byte]])
def jsonl[I : JsonCodec](f: I => Task[Unit]): Unit

Parse a JSONL stream.

Parse a JSONL stream.

Attributes