|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jclouds.blobstore.internal.BaseAsyncBlobStore org.jclouds.openstack.swift.blobstore.SwiftAsyncBlobStore
@Singleton public class SwiftAsyncBlobStore
Field Summary |
---|
Fields inherited from class org.jclouds.blobstore.internal.BaseAsyncBlobStore |
---|
blobUtils, context, defaultLocation, locations, service |
Constructor Summary | |
---|---|
protected |
SwiftAsyncBlobStore(BlobStoreContext context,
BlobUtils blobUtils,
ExecutorService service,
com.google.common.base.Supplier<Location> defaultLocation,
com.google.common.base.Supplier<Set<? extends Location>> locations,
CommonSwiftClient sync,
CommonSwiftAsyncClient async,
ContainerToResourceMetadata container2ResourceMd,
BlobStoreListContainerOptionsToListContainerOptions container2ContainerListOptions,
ContainerToResourceList container2ResourceList,
ObjectToBlob object2Blob,
BlobToObject blob2Object,
ObjectToBlobMetadata object2BlobMd,
BlobToHttpGetOptions blob2ObjectGetOptions,
javax.inject.Provider<FetchBlobMetadata> fetchBlobMetadataProvider)
|
Method Summary | |
---|---|
com.google.common.util.concurrent.ListenableFuture<Boolean> |
blobExists(String container,
String key)
This implementation invokes CommonSwiftAsyncClient.objectExists(java.lang.String, java.lang.String) |
com.google.common.util.concurrent.ListenableFuture<BlobMetadata> |
blobMetadata(String container,
String key)
This implementation invokes CommonSwiftAsyncClient#headObject |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
containerExists(String container)
This implementation invokes CommonSwiftAsyncClient.containerExists(java.lang.String) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
createContainerInLocation(Location location,
String container)
Note that location is currently ignored. |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
createContainerInLocation(Location location,
String container,
CreateContainerOptions options)
|
protected boolean |
deleteAndVerifyContainerGone(String container)
|
com.google.common.util.concurrent.ListenableFuture<Blob> |
getBlob(String container,
String key,
GetOptions options)
This implementation invokes CommonSwiftAsyncClient.getObject(java.lang.String, java.lang.String, org.jclouds.http.options.GetOptions...) |
com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> |
list()
This implementation invokes CommonSwiftAsyncClient.listContainers(org.jclouds.openstack.swift.options.ListContainerOptions...) |
com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> |
list(String container,
ListContainerOptions options)
This implementation invokes CommonSwiftAsyncClient#listBucket |
com.google.common.util.concurrent.ListenableFuture<String> |
putBlob(String container,
Blob blob)
This implementation invokes CommonSwiftAsyncClient.putObject(java.lang.String, org.jclouds.openstack.swift.domain.SwiftObject) |
com.google.common.util.concurrent.ListenableFuture<String> |
putBlob(String container,
Blob blob,
PutOptions options)
|
com.google.common.util.concurrent.ListenableFuture<Void> |
removeBlob(String container,
String key)
This implementation invokes CommonSwiftAsyncClient.removeObject(java.lang.String, java.lang.String) |
Methods inherited from class org.jclouds.blobstore.internal.BaseAsyncBlobStore |
---|
blobBuilder, clearContainer, clearContainer, countBlobs, countBlobs, createDirectory, deleteAndEnsurePathGone, deleteContainer, deleteDirectory, directoryExists, getBlob, getContext, list, listAssignableLocations, newBlob |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
@Inject protected SwiftAsyncBlobStore(BlobStoreContext context, BlobUtils blobUtils, @Named(value="jclouds.user-threads") ExecutorService service, com.google.common.base.Supplier<Location> defaultLocation, com.google.common.base.Supplier<Set<? extends Location>> locations, CommonSwiftClient sync, CommonSwiftAsyncClient async, ContainerToResourceMetadata container2ResourceMd, BlobStoreListContainerOptionsToListContainerOptions container2ContainerListOptions, ContainerToResourceList container2ResourceList, ObjectToBlob object2Blob, BlobToObject blob2Object, ObjectToBlobMetadata object2BlobMd, BlobToHttpGetOptions blob2ObjectGetOptions, javax.inject.Provider<FetchBlobMetadata> fetchBlobMetadataProvider)
Method Detail |
---|
public com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> list()
CommonSwiftAsyncClient.listContainers(org.jclouds.openstack.swift.options.ListContainerOptions...)
BlobStore.list()
public com.google.common.util.concurrent.ListenableFuture<Boolean> containerExists(String container)
CommonSwiftAsyncClient.containerExists(java.lang.String)
container
- container nameBlobStore.containerExists(java.lang.String)
public com.google.common.util.concurrent.ListenableFuture<Boolean> createContainerInLocation(Location location, String container)
BlobStore.createContainerInLocation(Location, String)
public com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> list(String container, ListContainerOptions options)
CommonSwiftAsyncClient#listBucket
container
- container nameBlobStore.list(String, ListContainerOptions)
public com.google.common.util.concurrent.ListenableFuture<Boolean> blobExists(String container, String key)
CommonSwiftAsyncClient.objectExists(java.lang.String, java.lang.String)
container
- container namekey
- object keyBlobStore.blobExists(java.lang.String, java.lang.String)
public com.google.common.util.concurrent.ListenableFuture<BlobMetadata> blobMetadata(String container, String key)
CommonSwiftAsyncClient#headObject
container
- container namekey
- object keyBlobStore.blobMetadata(java.lang.String, java.lang.String)
public com.google.common.util.concurrent.ListenableFuture<Blob> getBlob(String container, String key, GetOptions options)
CommonSwiftAsyncClient.getObject(java.lang.String, java.lang.String, org.jclouds.http.options.GetOptions...)
container
- container namekey
- object keyBlobStore.getBlob(String, String, GetOptions)
public com.google.common.util.concurrent.ListenableFuture<String> putBlob(String container, Blob blob)
CommonSwiftAsyncClient.putObject(java.lang.String, org.jclouds.openstack.swift.domain.SwiftObject)
container
- container nameblob
- objectBlobStore.putBlob(String,Blob)
public com.google.common.util.concurrent.ListenableFuture<Void> removeBlob(String container, String key)
CommonSwiftAsyncClient.removeObject(java.lang.String, java.lang.String)
container
- container namekey
- object keyBlobStore.removeBlob(java.lang.String, java.lang.String)
protected boolean deleteAndVerifyContainerGone(String container)
deleteAndVerifyContainerGone
in class BaseAsyncBlobStore
public com.google.common.util.concurrent.ListenableFuture<String> putBlob(String container, Blob blob, PutOptions options)
BlobStore.putBlob(String,Blob,PutOptions)
public com.google.common.util.concurrent.ListenableFuture<Boolean> createContainerInLocation(Location location, String container, CreateContainerOptions options)
BlobStore.createContainerInLocation(Location,String,CreateContainerOptions)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |