Create creates a new blob for writing. Sync will be called on the returned Blob object after -all- data has been successfully written. Close without Sync can be assumed to happen due to an unrelated error and stored data can be discarded. blobSize indicates the exact amount of bytes that will be
(ctx context.Context, key string, blobSize int64)
| 34 | // |
| 35 | // Passed context will cover the entire blob write operation. |
| 36 | Create(ctx context.Context, key string, blobSize int64) (Blob, error) |
| 37 | |
| 38 | // Open returns the reader for the object specified by |
| 39 | // passed key. |
no outgoing calls
no test coverage detected