StubTemplate

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

Type members

Classlikes

final case class NotificationTemplate[In](method: String, inCodec: Codec[In]) extends StubTemplate[In, Nothing, Unit]
final case class RequestResponseTemplate[In, Err, Out](method: String, inCodec: Codec[In], errCodec: ErrorCodec[Err], outCodec: Codec[Out]) extends StubTemplate[In, Err, Out]

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 notification[In](method: String)(implicit inCodec: Codec[In]): StubTemplate[In, Nothing, Unit]
def simple[In, Out](method: String)(implicit inCodec: Codec[In], outCodec: Codec[Out]): StubTemplate[In, ErrorPayload, Out]