Skip to content

Add FileResumableCreateJob and FileResumableModifyJob for uploading files in a chunked manner.

David Barchiesi requested to merge barchiesi/libkgapi:file_resumable_jobs into master

This adds FileResumableCreateJob and FileResumableModifyJob, both allow uploading a file using a resumable upload.

The jobs implement FileAbstractResumableJob that writes data in chunks in an upload session. FileAbstractResumableJob has a slighly different lifecycle compared to FileAbstractUploadJob, therefore the functionalities are kept separate.

See https://developers.google.com/drive/api/v2/manage-uploads#resumable

An example in examples/files allows uploading an Untitled file to the users root directory.

Merge request reports