Returns the HTTP response message (e.g. 'Not Found'), for this
request, or nil if the response has not yet been received.
(defn message
"Returns the HTTP response message (e.g. 'Not Found'), for this
request, or nil if the response has not yet been received."
[http-agnt]
(when (done? http-agnt)
(.getResponseMessage ^HttpURLConnection (::connection @http-agnt))))
Comments top
No comments for message. Log in to add a comment.