You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is only an upload function on the FeedWriter interface that expects a reference to be passed. This means that you are supposed to first use uploadData, uploadChunk, uploadFile or uploadFiles functions on the Bee class, then pass the returned reference to the upload function on the FeedWriter.
While this works and it gives you total control, maybe it would be more convenient to have the same functions on the FeedWriter interface directly to simplify common use-cases.
Currently there is only an
upload
function on theFeedWriter
interface that expects a reference to be passed. This means that you are supposed to first useuploadData
,uploadChunk
,uploadFile
oruploadFiles
functions on theBee
class, then pass the returned reference to theupload
function on theFeedWriter
.While this works and it gives you total control, maybe it would be more convenient to have the same functions on the
FeedWriter
interface directly to simplify common use-cases.For example, this:
Could be written instead like this:
The text was updated successfully, but these errors were encountered: