Is there a way to do asynchronous sftp file transfer with Jsch without having to manage your own threads?
I see there is a SftpProgressMonitor to monitor the progress but it just provides a callback.
I'm looking for something similar to Java's AsynchronousFileChannel write method:
public abstract Future write(ByteBuffer src, long position)
Which library provides async sftp transfer?