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
Reactions are currently unavailable
Right now, to load a Blob into a byte array, we use the load method:
Is load the right verb for this? (Not saying it's wrong, just want to discuss this one here.)
Some of the options: