Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow file upload by chunks #5

Open
borismod opened this issue Aug 30, 2017 · 0 comments
Open

Allow file upload by chunks #5

borismod opened this issue Aug 30, 2017 · 0 comments

Comments

@borismod
Copy link

I would like to upload a file by chunks using C# library. My web client uses ResumableJS library which uploads files from a browser to web server split by chunks. I would like to be able to transfer the chunks to Akamai Net Storage without consolidating them.

So here is the desired API:

public interface INetStorage
{
  void UploadChunk(string fileIdentifier, 
     int chunkNumber, 
     int chunkSize, 
     int currentChunkSize, 
     string fileType, 
     string fileName, 
     string relative filePath, 
     int totalFileChunks);

  bool IsChunkUploaded(string fileIdentifier, int chunkNumber);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant