org.jclouds.rest
Interface HttpAsyncClient


Deprecated. will be removed in jclouds 1.7, as async interfaces are no longer supported.

@Deprecated
public interface HttpAsyncClient

Simple rest client

Author:
Adrian Cole

Method Summary
 com.google.common.util.concurrent.ListenableFuture<Boolean> delete(URI location)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<Boolean> exists(URI location)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<InputStream> get(URI location)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<HttpResponse> invoke(HttpRequest request)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<String> post(URI location, Payload payload)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<String> put(URI location, Payload payload)
          Deprecated.  
 

Method Detail

put

com.google.common.util.concurrent.ListenableFuture<String> put(URI location,
                                                               Payload payload)
Deprecated. 
See Also:
HttpClient.post(java.net.URI, org.jclouds.io.Payload)

post

com.google.common.util.concurrent.ListenableFuture<String> post(URI location,
                                                                Payload payload)
Deprecated. 
See Also:
HttpClient.post(java.net.URI, org.jclouds.io.Payload)

exists

com.google.common.util.concurrent.ListenableFuture<Boolean> exists(URI location)
Deprecated. 
See Also:
HttpClient.exists(java.net.URI)

get

com.google.common.util.concurrent.ListenableFuture<InputStream> get(URI location)
Deprecated. 
See Also:
HttpClient.get(java.net.URI)

invoke

com.google.common.util.concurrent.ListenableFuture<HttpResponse> invoke(HttpRequest request)
Deprecated. 
See Also:
HttpClient.invoke(org.jclouds.http.HttpRequest)

delete

com.google.common.util.concurrent.ListenableFuture<Boolean> delete(URI location)
Deprecated. 
See Also:
HttpClient.delete(java.net.URI)


Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.