Routes

dev.cheleb.ziotapir.Routes
trait Routes

A trait that provides a method to gather all the routes from a controllers.

The method gatherRoutes takes a function that selects the routes from a controller, the type parameter C is the type of the context that the routes require (Streams, WebSockets, etc.).

Type parameters

C

The type of the context that the routes require.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

protected def gatherRoutes[C](select: BaseController => List[ServerEndpoint[C, Task]])(controllers: List[BaseController]): List[ServerEndpoint[C, Task]]

Gathers all the routes from a list of controllers.

Gathers all the routes from a list of controllers.

Type parameters

C

The type of the context that the routes require.

Value parameters

controllers

A list of controllers.

select

A function that selects the routes from a controller.

Attributes

Returns

A list of server endpoints.