pass

Description

A directive that passes the request unchanged to its inner route.

It is usually used as a “neutral element” when combining directives generically.

Example

final Route route = pass(() -> complete("abc"));

// tests:
testRoute(route).run(HttpRequest.GET("/"))
  .assertEntity("abc");
The source code for this page can be found here.