Packages

c

jsonrpclib.Endpoint

PartiallyAppliedEndpoint

class PartiallyAppliedEndpoint[F[_]] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartiallyAppliedEndpoint
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PartiallyAppliedEndpoint(method: String)

Value Members

  1. def apply[In, Err, Out](run: (In) => F[Either[Err, Out]])(implicit inCodec: Codec[In], errCodec: ErrorCodec[Err], outCodec: Codec[Out]): Endpoint[F]
  2. def notification[In](run: (In) => F[Unit])(implicit inCodec: Codec[In]): Endpoint[F]
  3. def simple[In, Out](run: (In) => F[Out])(implicit F: Monadic[F], inCodec: Codec[In], outCodec: Codec[Out]): Endpoint[F]