BiDiPathLens

Constructors

Link copied to clipboard
constructor(meta: Meta, get: (String) -> FINAL, set: (FINAL, Request) -> Request)

Properties

Link copied to clipboard
val meta: Meta

Functions

Link copied to clipboard
fun Events.and(next: Events): Events
Link copied to clipboard

Convert the result of a lens extraction to a Result4k type which

Link copied to clipboard
fun (Request) -> Boolean.asRouter(description: String = unavailable.description): Router

Convert any predicate on a request into a router

Link copied to clipboard
Link copied to clipboard
fun HttpHandler.debug(out: PrintStream = System.out, debugStream: Boolean = false): (request: Request) -> Response
Link copied to clipboard
open fun extract(target: Request): FINAL

Lens operation to get the value from the target. Synonym for invoke(IN)

Link copied to clipboard
open fun forEach(p0: Consumer<in Meta>)
Link copied to clipboard
open operator fun <R : Request> get(target: R): FINAL

Lens operation to get the value from the target. Synonym for invoke(IN)

Link copied to clipboard
open fun <R : Request> inject(value: FINAL, target: R): R

Lens operation to set the value into the target. Synomym for invoke(IN, OUT)

Link copied to clipboard
open operator override fun <R : Request> invoke(value: FINAL, target: R): R

Lens operation to set the value into the target

abstract operator override fun invoke(target: Request): FINAL

Lens operation to get the value from the target

operator fun invoke(target: String): FINAL
Link copied to clipboard
open operator override fun iterator(): Iterator<Meta>
Link copied to clipboard
fun <T> Lens<Request, T>.matches(fn: (T) -> Boolean): Router

Check the content of any lens on a request for routing purposes.

Link copied to clipboard
open infix fun <R : Request> of(value: FINAL): (R) -> R

Bind this Lens to a value, so we can set it into a target

Link copied to clipboard
fun <IN : Any, VALUE : Value<T>, T : Any> Lens<IN, String>.ofOrLensFailure(vf: ValueFactory<VALUE, T>, value: String): VALUE

Convert ot throw a lens failure when constructing a value type

Link copied to clipboard

Restrict the type that this Lens can extract from

Link copied to clipboard

Restrict the type that this Lens can inject into

Link copied to clipboard
open operator fun <R : Request> set(target: R, value: FINAL): R

Lens operation to set the value into the target. Synomym for invoke(IN, OUT)

Link copied to clipboard
Link copied to clipboard
fun Events.then(next: Events): (Event) -> Unit
Link copied to clipboard

Convert a synchronous HttpHandler API to mimic AsyncHttpClient