opendal
opendal copied to clipboard
Ability to abort the `write` operation with `Writer`.
Currently Writer
supports writing in multiple chunks through streaming manner.
It only provides append
and close
apis.
But it is highly probable that, after few chunks, fallible source stream may raise error. In that case we have to abort the write op. Currently Writer
provides no api for that.
Previous multipart api has the ability to cancel
the write op.