Packages

c

jsonrpclib.Endpoint

RequestResponseEndpoint

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] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Endpoint[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestResponseEndpoint
  2. Serializable
  3. Product
  4. Equals
  5. Endpoint
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RequestResponseEndpoint(method: String, run: (In) => F[Either[Err, Out]], inCodec: Codec[In], errCodec: ErrorCodec[Err], outCodec: Codec[Out])

Value Members

  1. val errCodec: ErrorCodec[Err]
  2. val inCodec: Codec[In]
  3. val method: String
    Definition Classes
    RequestResponseEndpointEndpoint
  4. val outCodec: Codec[Out]
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val run: (In) => F[Either[Err, Out]]