Right now, to load a Blob into a byte array, we use the load method:
StorageService storage = ...;
bytes[] bytes = storage.load("bucket-name", "blob-name");
Is load the right verb for this? (Not saying it's wrong, just want to discuss this one here.)
Some of the options:
load (This is what it is today)
download
read
getBytes
readBytes
Right now, to load a Blob into a byte array, we use the
loadmethod:Is
loadthe right verb for this? (Not saying it's wrong, just want to discuss this one here.)Some of the options:
load(This is what it is today)downloadreadgetBytesreadBytes