aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-07-09 16:39:29 +0200
committeradamw <adam@warski.org>2017-07-09 16:39:29 +0200
commit18ed991eefd4ff541e722808f80a48d47df58a57 (patch)
treeb4a1a72825f6d6d7a3adbb2811cef98bdd514ba5 /README.md
parent820095216e671888cfa607b329d749ba099a7bc1 (diff)
downloadsttp-18ed991eefd4ff541e722808f80a48d47df58a57.tar.gz
sttp-18ed991eefd4ff541e722808f80a48d47df58a57.tar.bz2
sttp-18ed991eefd4ff541e722808f80a48d47df58a57.zip
Initial version of the URI interpolator
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1081357..28a6238 100644
--- a/README.md
+++ b/README.md
@@ -24,10 +24,11 @@ println(response.body) // has type String as specified when
## How is sttp different from other libraries?
-* immutable request builder which doesn't require the URI to be specified upfront. Allows defining partial requests
+* immutable request builder which doesn't impose any order in which request parameters need to be specified.
+One consequence of that approach is that the URI to be specified upfront. Allows defining partial requests
which contain common cookies/headers/options, which can later be specialized using a specific URI and HTTP method.
* support for multiple backends, both synchronous and asynchronous, with backend-specific streaming support
-* TODO URI interpolator with optional parameters support
+* URI interpolator with optional parameters support
## Usage