|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ListContainerOptions in org.jclouds.blobstore |
|---|
| Methods in org.jclouds.blobstore with parameters of type ListContainerOptions | |
|---|---|
void |
TransientStorageStrategy.clearContainer(String containerName,
ListContainerOptions options)
|
void |
LocalStorageStrategy.clearContainer(String container,
ListContainerOptions options)
Like LocalStorageStrategy.clearContainer(String) except you can use options to do things like recursive
deletes, or clear at a different path than root. |
void |
BlobStore.clearContainer(String container,
ListContainerOptions options)
Like BlobStore.clearContainer(String) except you can use options to do things like recursive
deletes, or clear at a different path than root. |
com.google.common.util.concurrent.ListenableFuture<Void> |
AsyncBlobStore.clearContainer(String container,
ListContainerOptions options)
|
long |
BlobStore.countBlobs(String container,
ListContainerOptions options)
|
com.google.common.util.concurrent.ListenableFuture<Long> |
AsyncBlobStore.countBlobs(String container,
ListContainerOptions options)
|
InputStreamMap |
InputStreamMap.Factory.create(String containerName,
ListContainerOptions options)
|
BlobMap |
BlobMap.Factory.create(String containerName,
ListContainerOptions options)
|
BlobMap |
BlobStoreContext.createBlobMap(String container,
ListContainerOptions options)
Creates a Map view of the specified container. |
InputStreamMap |
BlobStoreContext.createInputStreamMap(String container,
ListContainerOptions options)
Creates a Map view of the specified container. |
com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> |
LocalAsyncBlobStore.list(String container,
ListContainerOptions options)
default maxResults is 1000 |
PageSet<? extends StorageMetadata> |
BlobStore.list(String container,
ListContainerOptions options)
Like BlobStore.list(String) except you can control the size, recursion, and context of the list
using options |
com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> |
AsyncBlobStore.list(String container,
ListContainerOptions options)
|
static Iterable<StorageMetadata> |
BlobStores.listAll(BlobStore blobStore,
String container,
ListContainerOptions containerOptions)
|
static Iterable<StorageMetadata> |
BlobStores.listAll(BlobStore blobStore,
String container,
ListContainerOptions containerOptions,
ListAllOptions listAllOptions)
A variant of BlobStore.list(String, ListContainerOptions) that produces an Iterable over the entire set of results, not just one page, making multiple calls to BlobStore.list as needed. |
| Uses of ListContainerOptions in org.jclouds.blobstore.internal |
|---|
| Fields in org.jclouds.blobstore.internal declared as ListContainerOptions | |
|---|---|
protected ListContainerOptions |
BaseBlobMap.options
|
| Constructors in org.jclouds.blobstore.internal with parameters of type ListContainerOptions | |
|---|---|
BaseBlobMap(BlobStore blobstore,
GetBlobsInListStrategy getAllBlobs,
ContainsValueInListStrategy containsValueStrategy,
PutBlobsStrategy putBlobsStrategy,
ListContainerAndRecurseThroughFolders listStrategy,
String containerName,
ListContainerOptions options)
|
|
BlobMapImpl(BlobStore blobstore,
GetBlobsInListStrategy getAllBlobs,
ContainsValueInListStrategy containsValueStrategy,
PutBlobsStrategy putBlobsStrategy,
ListContainerAndRecurseThroughFolders listStrategy,
String containerName,
ListContainerOptions options,
javax.inject.Provider<BlobBuilder> blobBuilders)
|
|
InputStreamMapImpl(BlobStore connection,
javax.inject.Provider<BlobBuilder> blobBuilders,
GetBlobsInListStrategy getAllBlobs,
ListContainerAndRecurseThroughFolders listStrategy,
ContainsValueInListStrategy containsValueStrategy,
PutBlobsStrategy putBlobsStrategy,
String containerName,
ListContainerOptions options)
|
|
| Uses of ListContainerOptions in org.jclouds.blobstore.options |
|---|
| Subclasses of ListContainerOptions in org.jclouds.blobstore.options | |
|---|---|
static class |
ListContainerOptions.ImmutableListContainerOptions
|
| Methods in org.jclouds.blobstore.options that return ListContainerOptions | |
|---|---|
ListContainerOptions |
ListOptions.ImmutableListOptions.afterMarker(String marker)
|
ListContainerOptions |
ListContainerOptions.afterMarker(String marker)
Place to continue a listing at. |
ListContainerOptions |
ListContainerOptions.ImmutableListContainerOptions.afterMarker(String marker)
|
static ListContainerOptions |
ListContainerOptions.Builder.afterMarker(String marker)
|
ListContainerOptions |
ListContainerOptions.clone()
|
ListContainerOptions |
ListContainerOptions.ImmutableListContainerOptions.clone()
|
ListContainerOptions |
ListContainerOptions.inDirectory(String dir)
This will list the contents of a virtual or real directory path. |
ListContainerOptions |
ListContainerOptions.ImmutableListContainerOptions.inDirectory(String dir)
|
static ListContainerOptions |
ListContainerOptions.Builder.inDirectory(String directory)
|
ListContainerOptions |
ListOptions.ImmutableListOptions.maxResults(int maxKeys)
|
ListContainerOptions |
ListContainerOptions.maxResults(int maxKeys)
The maximum number of values you'd like to see in the response body. |
ListContainerOptions |
ListContainerOptions.ImmutableListContainerOptions.maxResults(int maxKeys)
|
static ListContainerOptions |
ListContainerOptions.Builder.maxResults(int maxKeys)
|
ListContainerOptions |
ListContainerOptions.recursive()
return a listing of all objects inside the store, recursively. |
ListContainerOptions |
ListContainerOptions.ImmutableListContainerOptions.recursive()
|
static ListContainerOptions |
ListContainerOptions.Builder.recursive()
|
ListContainerOptions |
ListContainerOptions.withDetails()
populate each result with detailed such as metadata even if it incurs extra requests to the service. |
static ListContainerOptions |
ListContainerOptions.Builder.withDetails()
|
| Constructors in org.jclouds.blobstore.options with parameters of type ListContainerOptions | |
|---|---|
ListContainerOptions.ImmutableListContainerOptions(ListContainerOptions delegate)
|
|
| Uses of ListContainerOptions in org.jclouds.blobstore.strategy |
|---|
| Methods in org.jclouds.blobstore.strategy with parameters of type ListContainerOptions | |
|---|---|
Iterable<? extends StorageMetadata> |
ListContainerStrategy.execute(String containerName,
ListContainerOptions options)
|
Set<? extends BlobMetadata> |
ListBlobsInContainer.execute(String containerName,
ListContainerOptions options)
|
Iterable<Blob> |
GetBlobsInListStrategy.execute(String containerName,
ListContainerOptions options)
|
long |
CountListStrategy.execute(String containerName,
ListContainerOptions options)
|
void |
ClearListStrategy.execute(String containerName,
ListContainerOptions options)
|
boolean |
ContainsValueInListStrategy.execute(String containerName,
Object value,
ListContainerOptions options)
|
| Uses of ListContainerOptions in org.jclouds.blobstore.strategy.internal |
|---|
| Methods in org.jclouds.blobstore.strategy.internal with parameters of type ListContainerOptions | |
|---|---|
Set<? extends BlobMetadata> |
ListContainerAndRecurseThroughFolders.execute(String containerName,
ListContainerOptions options)
|
Iterable<Blob> |
GetAllBlobsInListAndRetryOnFailure.execute(String container,
ListContainerOptions options)
|
void |
DeleteAllKeysInList.execute(String containerName,
ListContainerOptions options)
|
long |
CountBlobTypeInList.execute(String container,
ListContainerOptions options)
|
Iterable<? extends StorageMetadata> |
ConcatenateContainerLists.execute(String container,
ListContainerOptions options)
|
boolean |
FindMD5InList.execute(String containerName,
Object value,
ListContainerOptions options)
|
| Uses of ListContainerOptions in org.jclouds.blobstore.util |
|---|
| Methods in org.jclouds.blobstore.util with parameters of type ListContainerOptions | |
|---|---|
void |
BlobUtils.clearContainer(String container,
ListContainerOptions options)
|
long |
BlobUtils.countBlobs(String container,
ListContainerOptions options)
|
| Uses of ListContainerOptions in org.jclouds.blobstore.util.internal |
|---|
| Methods in org.jclouds.blobstore.util.internal with parameters of type ListContainerOptions | |
|---|---|
void |
BlobUtilsImpl.clearContainer(String container,
ListContainerOptions options)
|
long |
BlobUtilsImpl.countBlobs(String container,
ListContainerOptions options)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||