public int SSHMaxQueuedReadRequests { get; set; }Public Property SSHMaxQueuedReadRequests As Integer
Get
Setpublic:
property int SSHMaxQueuedReadRequests {
int get ();
void set (int value);
}member SSHMaxQueuedReadRequests : int with get, setThis property applies to SFTP/SCP only. In SFTP, files are read block-by-block. The client sends one request per block.
Queueing up read-requests helps to counteract latencies. This property determines the number of read-requests that should be queued up.
If it's set to 1 then no requests a queued up meaning that reads are done synchronously. The default is 32.