Write is for in memory data. shouldCache specifies whether or not caching should be attempted.
(ctx context.Context, name string, keypath KeyPath, data io.Reader, size int64, cacheInfo *CacheInfo)
| 53 | type RawWriter interface { |
| 54 | // Write is for in memory data. shouldCache specifies whether or not caching should be attempted. |
| 55 | Write(ctx context.Context, name string, keypath KeyPath, data io.Reader, size int64, cacheInfo *CacheInfo) error |
| 56 | // Append starts or continues an Append job. Pass nil to AppendTracker to start a job. |
| 57 | Append(ctx context.Context, name string, keypath KeyPath, tracker AppendTracker, buffer []byte) (AppendTracker, error) |
| 58 | // CloseAppend closes any resources associated with the AppendTracker. |
no outgoing calls