Uses of Interface
org.elasticsearch.common.blobstore.BlobContainer
-
Packages that use BlobContainer Package Description org.elasticsearch.common.blobstore org.elasticsearch.common.blobstore.fs org.elasticsearch.common.blobstore.support org.elasticsearch.repositories.blobstore -
-
Uses of BlobContainer in org.elasticsearch.common.blobstore
Methods in org.elasticsearch.common.blobstore that return BlobContainer Modifier and Type Method Description BlobContainerBlobStore. blobContainer(BlobPath path)Get a blob container instance for storing blobs at the givenBlobPath.Methods in org.elasticsearch.common.blobstore that return types with arguments of type BlobContainer Modifier and Type Method Description Map<String,BlobContainer>BlobContainer. children()Lists all child containers under this container. -
Uses of BlobContainer in org.elasticsearch.common.blobstore.fs
Classes in org.elasticsearch.common.blobstore.fs that implement BlobContainer Modifier and Type Class Description classFsBlobContainerA file system based implementation ofBlobContainer.Methods in org.elasticsearch.common.blobstore.fs that return BlobContainer Modifier and Type Method Description BlobContainerFsBlobStore. blobContainer(BlobPath path)Methods in org.elasticsearch.common.blobstore.fs that return types with arguments of type BlobContainer Modifier and Type Method Description Map<String,BlobContainer>FsBlobContainer. children() -
Uses of BlobContainer in org.elasticsearch.common.blobstore.support
Classes in org.elasticsearch.common.blobstore.support that implement BlobContainer Modifier and Type Class Description classAbstractBlobContainerA base abstract blob container that implements higher level container methods. -
Uses of BlobContainer in org.elasticsearch.repositories.blobstore
Methods in org.elasticsearch.repositories.blobstore that return BlobContainer Modifier and Type Method Description protected BlobContainerBlobStoreRepository. blobContainer()maintains single lazy instance ofBlobContainerMethods in org.elasticsearch.repositories.blobstore with parameters of type BlobContainer Modifier and Type Method Description voidChecksumBlobStoreFormat. delete(BlobContainer blobContainer, String name)Deletes obj in the blob containerTChecksumBlobStoreFormat. read(BlobContainer blobContainer, String name)Reads and parses the blob with given name, applying name translation using the {link #blobName} methodTChecksumBlobStoreFormat. readBlob(BlobContainer blobContainer, String blobName)Reads blob with specified name without resolving the blobName using usingChecksumBlobStoreFormat.blobName(java.lang.String)method.voidChecksumBlobStoreFormat. write(T obj, BlobContainer blobContainer, String name, boolean failIfAlreadyExists)Writes blob with resolving the blob name usingChecksumBlobStoreFormat.blobName(java.lang.String)method.voidChecksumBlobStoreFormat. writeAtomic(T obj, BlobContainer blobContainer, String name)Writes blob in atomic manner with resolving the blob name usingChecksumBlobStoreFormat.blobName(java.lang.String)method.
-