Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.ChunkedUploadChunkSize

TElDropboxDataStorage     See also     


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


Specifies the chunk size for chunked upload.

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

    Specifies the chunk size if chunked_upload method is used to write files to the storage. 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     WriteObject    

Discuss this help topic in SecureBlackbox Forum