Get a BlobDir corresponding to the subdirectory with the specified name
Subdirectories are "created" on demand
Query for blobs and sub-directories within this directory
The order of entries returned is undefined.
Can optionally pass a continuation token returned by the previous call to retrieve additional entries.
Optionalcontinuation: SimpleBlobStoreContinuationRead the content of a blob with the specified name.
The returned content array is read only and immutable.
Remove this directory and it's contents, recursively
Remove blob with the specified name.
Write the specified content to a blob with the specified name.
Any existing blob with that name is overwritten, otherwise a new blob is created. The content array is treated as read only and must be immutable until the operation completes.
Reference implementation of BlobDir
Intended for use as a mock, to compare with an optimized implementation when testing and for simple sample apps. Simplest possible implementation, no attempt at optimization.