Re: dlang-requests 0.4.0 released

2016-12-30 Thread Andrea Fontana via Digitalmars-d-announce
On Thursday, 29 December 2016 at 10:22:24 UTC, ikod wrote: Hi, dlang-requests v0.4.0 released. Major new feature - threaded request pool, which works like InputRange. You can write code like this: Nice feature!

dlang-requests 0.4.0 released

2016-12-29 Thread ikod via Digitalmars-d-announce
Hi, dlang-requests v0.4.0 released. Major new feature - threaded request pool, which works like InputRange. You can write code like this: iota(10). map!(n => "%d".format(n).representation). map!(d => Job("http://httpbin.org/post;).method("POST").data(d)).