Liking cljdoc? Tell your friends :D

strojure.undertow.api.exchange

Helper functions to work with HttpServerExchange.

Helper functions to work with `HttpServerExchange`.
raw docstring

async-dispatchcljmacrodeprecated

(async-dispatch exchange expr)

Dispatches execution of task expr to the XNIO worker thread pool. Required for async operations with server exchange.

Dispatches execution of task `expr` to the XNIO worker thread pool. Required
for async operations with server exchange.
sourceraw docstring

async-throwcljdeprecated

(async-throw exchange throwable)

Rethrows throwable in context of request handling to allow server to handle error. Required for async operations with server exchange.

Deprecated, renamed to throw-in.

Rethrows `throwable` in context of request handling to allow server to handle
error. Required for async operations with server exchange.

Deprecated, renamed to [[throw-in]].
sourceraw docstring

dispatch-runnableclj

(dispatch-runnable exchange runnable)
(dispatch-runnable exchange executor runnable)

Dispatches execution of runnable to the executor or XNIO worker thread pool. See also io.undertow.server.HttpHandler/dispatch.

Dispatches execution of `runnable` to the `executor` or XNIO worker thread
pool. See also `io.undertow.server.HttpHandler/dispatch`.
sourceraw docstring

dispatchingcljmacro

(dispatching exchange expr)
(dispatching exchange executor expr)

Executes expr dispatching task using dispatch-runnable. Throws caught exceptions with throw-in.

Executes `expr` dispatching task using [[dispatch-runnable]]. Throws caught
exceptions with [[throw-in]].
sourceraw docstring

get-existing-sessionclj

(get-existing-session exchange)

Returns session from the exchange or nil if is not created.

Returns session from the `exchange` or nil if is not created.
sourceraw docstring

get-input-streamclj

(get-input-stream e)

Returns input stream for incomplete request. Starts blocking if necessary but does not check if running on IO thread.

Returns input stream for incomplete request. Starts blocking if necessary but
does not check if running on IO thread.
sourceraw docstring

get-or-create-sessionclj

(get-or-create-session exchange)

Return session from the exchange, creates new session if necessary. Returns nil if session manager is not attached to the exchange.

Return session from the `exchange`, creates new session if necessary. Returns
`nil` if session manager is not attached to the `exchange`.
sourceraw docstring

get-session-configclj

(get-session-config exchange)

Returns session config from the exchange.

Returns session config from the `exchange`.
sourceraw docstring

get-session-managerclj

(get-session-manager exchange)

Returns session manager from exchange.

Returns session manager from `exchange`.
sourceraw docstring

new-output-streamclj

(new-output-stream e)

Returns new output stream. Starts blocking if necessary.

Returns new output stream. Starts blocking if necessary.
sourceraw docstring

put-headers!clj

(put-headers! header-map! headers)

Inserts map headers into mutating header-map!, returns nil.

  • All keys and values in headers are converted to string with str.
  • Sequential values are put as multiple headers.
  • Keys from headers overwrite existing keys in header-map.
  • Keys with nil value remove headers from header-map.
Inserts map `headers` into mutating `header-map!`, returns `nil`.

- All keys and values in `headers` are converted to string with `str`.
- Sequential values are put as multiple headers.
- Keys from `headers` overwrite existing keys in `header-map`.
- Keys with `nil` value remove headers from `header-map`.
sourceraw docstring

sessions-enabled?clj

(sessions-enabled? exchange)

True if session manager is attached to the exchange.

True if session manager is attached to the `exchange`.
sourceraw docstring

start-blocking*clj

(start-blocking* e)

Custom version of the startBlocking method which avoids exception in completed requests.

Custom version of the `startBlocking` method which avoids exception in
completed requests.
sourceraw docstring

throw-inclj

(throw-in exchange throwable)

Throws throwable in context of request handling to allow server to handle error.

Throws `throwable` in context of request handling to allow server to handle
error.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close