case classEntryPoint(name: String, argSignatures: Seq[ArgSig], doc: Option[String], varargs: Boolean, invoke0: (Map[String, String], Seq[String]) ⇒ Result[Any]) extends Product with Serializable
What is known about a single endpoint for our routes. It has a name,
argSignatures for each argument, and a macro-generated invoke0
that performs all the necessary argument parsing and de-serialization.
Realistically, you will probably spend most of your time calling invoke
instead, which provides a nicer API to call it that mimmicks the API of
calling a Scala method.
What is known about a single endpoint for our routes. It has a name, argSignatures for each argument, and a macro-generated invoke0 that performs all the necessary argument parsing and de-serialization.
Realistically, you will probably spend most of your time calling invoke instead, which provides a nicer API to call it that mimmicks the API of calling a Scala method.