Hi,
> Didn't we originally have:
>
> Response = invocation.get();
> Future = invocatoin.getAsync();
>
> Maybe have
>
> AsyncInvocation a = client.async();
> Invocation i = client.invocation();
>
> Future f = a.get();
> Future f = a.post();
>
> String enttity = i.get(String.class);
>
> Remove the invoke() and queue() methods. This way get, post, et. al. is
> always invoked last to trigger the actual invocation.
>
Lets keep get()/etc with Link and have get()/etc finishing the chain,
and have Link optionally creating an initialized Invocation which will
do its invoke().
IMHO Link is an HTTP-centric thing and it should do get().
About to submit a more concrete proposal shortly
Thanks, Sergey
>
>