Description
Based on this ticket: https://issues.apache.org/jira/browse/SSHD-1123 we got in version 2.7.0 this sendChunkIfRemoteWindowIsSmallerThanPacketSize flag, which can be passed into ChannelAsyncOutputStream constructor, to indicate, that chunk of the data should be send in case there's less than packetSize space left in remote window.
I'd really like to have this value passed from some config or property resolver file in a similar way like the timeouts are passed, so I wouldn't need to create my own SftpClient and SftpClientFactory just to override ChannelAsyncOutputStream constructor call and set the flag to true.
Adding this would significantly simplify my implementation, as I don't need to have my own implementation of SftpClient, because I'm okey with the Default one.