Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorage.ChunkedUploadChunkSize

TElGoogleDriveDataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies the chunk size when chunked upload is used.

Declaration

[C#]
    long ChunkedUploadChunkSize;

[VB.NET]
    Property ChunkedUploadChunkSize As Long

[Pascal]
    property ChunkedUploadChunkSize: Int64;

[C++]
    int64_t get_ChunkedUploadChunkSize();
    void set_ChunkedUploadChunkSize(int64_t Value);

[PHP]
    integer get_ChunkedUploadChunkSize()
    void set_ChunkedUploadChunkSize(integer $Value)

[Java]
    long getChunkedUploadChunkSize();
    void setChunkedUploadChunkSize(long Value);

Description

     The larger is the chunk size, the less upload calls will be created, and the faster is the upload. However, each time the upload is interrupted, it will restart from the last chunk. The default value is 4194304 bytes (4 MB).

See also:     ChunkedUploadThreshold    

Discuss this help topic in SecureBlackbox Forum