Uses of Interface
com.maverick.sftp.FileTransferProgress

Packages that use FileTransferProgress
com.maverick.scp This package contains a Secure Copy (SCP) engine suitable for the lightweight J2SSH Maverick API. 
com.maverick.sftp The base implementation of the SFTP protocol enabling SFTP to be operated over both SSH1 and SSH2 connections.
 
com.sshtools.scp This package contains the SSHTools SCP implementation converted to use the J2SSH Maverick API's SCP engine. 
com.sshtools.sftp This package contains the SSHTools SFTP client converted for use with the J2SSH Maverick API. 
 

Uses of FileTransferProgress in com.maverick.scp
 

Methods in com.maverick.scp with parameters of type FileTransferProgress
 void ScpClientIO.put(java.io.InputStream in, long length, java.lang.String localFile, java.lang.String remoteFile, FileTransferProgress progress)
           Uploads a java.io.InputStream to a remove server as file.
 java.io.InputStream ScpClientIO.get(java.lang.String remoteFile, FileTransferProgress progress)
           Gets a remote file as an java.io.InputStream.
protected  void ScpClientIO.ScpEngineIO.writeStreamToRemote(java.io.InputStream in, long length, java.lang.String localName, FileTransferProgress progress)
           Write a stream as a file to the remote server.
protected  java.io.InputStream ScpClientIO.ScpEngineIO.readStreamFromRemote(java.lang.String remoteFile, FileTransferProgress progress)
          Open an InputStream.
protected  void ScpClientIO.ScpEngineIO.writeCompleteFile(java.io.InputStream in, long size, FileTransferProgress progress)
           
protected  void ScpClientIO.ScpEngineIO.readCompleteFile(java.io.OutputStream out, long size, FileTransferProgress progress)
           
 

Uses of FileTransferProgress in com.maverick.sftp
 

Methods in com.maverick.sftp with parameters of type FileTransferProgress
 void SftpSubsystemChannel.performOptimizedWrite(byte[] handle, int blocksize, int outstandingRequests, java.io.InputStream in, int buffersize, FileTransferProgress progress)
          Performs an optimized write of a file through asynchronous messaging and through buffering the local file into memory.
 void SftpSubsystemChannel.performOptimizedWrite(byte[] handle, int blocksize, int outstandingRequests, java.io.InputStream in, int buffersize, FileTransferProgress progress, long position)
          Performs an optimized write of a file through asynchronous messaging and through buffering the local file into memory.
 void SftpSubsystemChannel.performOptimizedRead(byte[] handle, long length, int blocksize, java.io.OutputStream out, int outstandingRequests, FileTransferProgress progress)
          Performs an optimized read of a file through use of asynchronous messages.
 void SftpSubsystemChannel.performOptimizedRead(byte[] handle, long length, int blocksize, java.io.OutputStream out, int outstandingRequests, FileTransferProgress progress, long position)
          Performs an optimized read of a file through use of asynchronous messages.
 

Uses of FileTransferProgress in com.sshtools.scp
 

Methods in com.sshtools.scp with parameters of type FileTransferProgress
 void ScpClient.put(java.lang.String localFile, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
           Uploads a local file onto the remote server.
 void ScpClient.put(java.lang.String[] localFiles, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
           Uploads an array of local files onto the remote server.
 void ScpClient.get(java.lang.String localFile, java.lang.String[] remoteFiles, boolean recursive, FileTransferProgress progress)
           
 void ScpClient.get(java.lang.String localFile, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
           
 

Uses of FileTransferProgress in com.sshtools.sftp
 

Methods in com.sshtools.sftp with parameters of type FileTransferProgress
 SftpFileAttributes SftpClient.get(java.lang.String path, FileTransferProgress progress)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String path, FileTransferProgress progress, boolean resume)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local, FileTransferProgress progress)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local, FileTransferProgress progress, boolean resume)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local, FileTransferProgress progress)
           Download the remote file writing it to the specified OutputStream.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local, FileTransferProgress progress, long position)
           Download the remote file writing it to the specified OutputStream.
 void SftpClient.put(java.lang.String local, FileTransferProgress progress, boolean resume)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, FileTransferProgress progress)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, java.lang.String remote, FileTransferProgress progress)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, java.lang.String remote, FileTransferProgress progress, boolean resume)
           Upload a file to the remote computer.
 void SftpClient.put(java.io.InputStream in, java.lang.String remote, FileTransferProgress progress)
           Upload a file to the remote computer reading from the specified InputStream.
 void SftpClient.put(java.io.InputStream in, java.lang.String remote, FileTransferProgress progress, long position)
           
 DirectoryOperation SftpClient.copyLocalDirectory(java.lang.String localdir, java.lang.String remotedir, boolean recurse, boolean sync, boolean commit, FileTransferProgress progress)
          Copy the contents of a local directory into a remote remote directory.
 DirectoryOperation SftpClient.copyRemoteDirectory(java.lang.String remotedir, java.lang.String localdir, boolean recurse, boolean sync, boolean commit, FileTransferProgress progress)
          Copy the contents of a remote directory to a local directory
 



Copyright © 2003 3SP LTD. All Rights Reserved.