Liking cljdoc? Tell your friends :D

org.httpkit.sni-client

Provides an SNI-capable SSL configurer and client, Ref. #335. In a separate namespace from org.httpkit.client so that http-kit can retain backwards-compatibility with JVM < 8.

Provides an SNI-capable SSL configurer and client, Ref. #335.
In a separate namespace from `org.httpkit.client` so that
http-kit can retain backwards-compatibility with JVM < 8.
raw docstring

org.httpkit.timer

TimerService wrapper:

  • Can schedule many tasks at once.
  • When scheduled for 1000ms, may run in 1000ms, 10001ms, etc.
  • Cancel returns true => future task guaranteed cancelled; returns false => already cancelled || already run.
  • Scheduling a new task is O(log(N)) where N is # active tasks.
  • Cancelling a task is O(N).
  • Timer-service thread will kill itself automatically when no task is scheduled for 4 minutes, and will restart automatically when a new task is added.
TimerService wrapper:
* Can schedule many tasks at once.
* When scheduled for 1000ms, may run in 1000ms, 10001ms, etc.
* Cancel returns true => future task guaranteed cancelled;
        returns false => already cancelled || already run.
* Scheduling a new task is O(log(N)) where N is # active tasks.
* Cancelling a task is O(N).
* Timer-service thread will kill itself automatically when no task is
  scheduled for 4 minutes, and will restart automatically when a new task
  is added.
raw docstring

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

× close