Endpoint

io.hireproof.structure.Endpoint
See theEndpoint companion object
final case class Endpoint[I, O](input: Input[I], output: Output[O])

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def implementedBy[F[_]](f: I => F[O]): Implementation[F, I, O]
def modifyInput[T](f: Input[I] => Input[T]): Endpoint[T, O]
def modifyOutput[T](f: Output[O] => Output[T]): Endpoint[I, T]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product