Http-kit 2.8.0
Released under the Apache License, Version 2.0
Simple, high-performance event-driven HTTP client+server for Clojure.
Installation
To install, add the following dependency to your project or build file:
[http-kit "2.8.0"]
Namespaces
org.httpkit.sni-client
Provides an SNI-capable SSL configurer and client, Ref. #335.
Public variables and functions:
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.Public variables and functions: