Endpoint

object Endpoint
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

final case class NotificationEndpoint[F[_], In](method: String, run: In => F[Unit], inCodec: Codec[In]) extends Endpoint[F]
class PartiallyAppliedEndpoint[F[_]](method: String)
final case class RequestResponseEndpoint[F[_], In, Err, Out](method: String, run: In => F[Either[Err, Out]], inCodec: Codec[In], errCodec: ErrorCodec[Err], outCodec: Codec[Out]) extends Endpoint[F]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def apply[F[_]](method: String): PartiallyAppliedEndpoint[F]