Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.49 KB

File metadata and controls

45 lines (33 loc) · 1.49 KB

http.async.client - Asynchronous HTTP Client - Clojure

http.async.client is Asynchronous HTTP Client for Clojure.

tl;dr

Declare dependency:

(defproject your-project "1.0.0-SNAPSHOT"
  :description "Your project description"
  :dependencies [[org.clojure/clojure "1.2.0"]
                 [org.clojure/clojure-contrib "1.2.0"]
                 [http.async.client "0.2.2"]])

Require:

(ns sample (:require [http.async.client :as c]))

GET resource:

(let [response (c/GET "http://github.com/neotyk/http.async.client/")]
  (c/await response)
  (c/string response))

Information over http.async.client

*http.async.client* is based on Asynchronous Http Client for Java which runs on top of Netty Project.

It requires Clojure 1.2.

For more documentation refer to docs and for API to autodoc.

http.async.client is distributed under Apache License, Version 2.0.

If you would like to help please look at to do or submit ticket here.

Changelog.