Treatment trace

http/client/util::trace


Parameters

↳ var headers: Option<Map> = _ (std/data::Map)
↳ var url: string

Inputs

⇥ trigger: Block<void>

Outputs

↦ failure: Block<string>
↦ headers: Block<Map> (std/data::Map)
↦ status: Block<HttpStatus> (http/status::HttpStatus)


Performs HTTP TRACE operation.

Parameters:

  • url: the URL to call TRACE on.
  • headers: headers to send in request.

Inputs:

  • trigger: starts the request.

Outputs:

  • status: HTTP status response.
  • headers: headers received in response.
  • failure: emitted if the request failed technically, containing the failure message.

Also see MDN documentation.