process

abstract fun process(request: REQ): RES


open fun process(request: REQ, block: (RES) -> Unit)

Processes the given request and handles the response using the provided block.

Since

1.0.0

Parameters

request

The request to be processed.

block

A function to handle the resulting response.