Uses of Interface
org.apache.commons.net.io.CopyStreamListener
-
Packages that use CopyStreamListener Package Description examples.ftp org.apache.commons.net.ftp FTP and FTPS support classesorg.apache.commons.net.io Utility classes for IO support. -
-
Uses of CopyStreamListener in examples.ftp
Methods in examples.ftp that return CopyStreamListener Modifier and Type Method Description private static CopyStreamListenerFTPClientExample. createListener() -
Uses of CopyStreamListener in org.apache.commons.net.ftp
Classes in org.apache.commons.net.ftp that implement CopyStreamListener Modifier and Type Class Description private static classFTPClient.CSLFields in org.apache.commons.net.ftp declared as CopyStreamListener Modifier and Type Field Description private CopyStreamListenerFTPClient. __copyStreamListenerMethods in org.apache.commons.net.ftp that return CopyStreamListener Modifier and Type Method Description private CopyStreamListenerFTPClient. __mergeListeners(CopyStreamListener local)Merge two copystream listeners, either or both of which may be null.CopyStreamListenerFTPClient. getCopyStreamListener()Obtain the currently active listener.Methods in org.apache.commons.net.ftp with parameters of type CopyStreamListener Modifier and Type Method Description private CopyStreamListenerFTPClient. __mergeListeners(CopyStreamListener local)Merge two copystream listeners, either or both of which may be null.voidFTPClient. setCopyStreamListener(CopyStreamListener listener)Set the listener to be used when performing store/retrieve operations. -
Uses of CopyStreamListener in org.apache.commons.net.io
Classes in org.apache.commons.net.io that implement CopyStreamListener Modifier and Type Class Description classCopyStreamAdapterThe CopyStreamAdapter will relay CopyStreamEvents to a list of listeners when either of its bytesTransferred() methods are called.Methods in org.apache.commons.net.io with parameters of type CopyStreamListener Modifier and Type Method Description voidCopyStreamAdapter. addCopyStreamListener(CopyStreamListener listener)Registers a CopyStreamListener to receive CopyStreamEvents.static longUtil. copyReader(java.io.Reader source, java.io.Writer dest, int bufferSize, long streamSize, CopyStreamListener listener)Copies the contents of a Reader to a Writer using a copy buffer of a given size and notifies the provided CopyStreamListener of the progress of the copy operation by calling its bytesTransferred(long, int) method after each write to the destination.static longUtil. copyStream(java.io.InputStream source, java.io.OutputStream dest, int bufferSize, long streamSize, CopyStreamListener listener)Copies the contents of an InputStream to an OutputStream using a copy buffer of a given size and notifies the provided CopyStreamListener of the progress of the copy operation by calling its bytesTransferred(long, int) method after each write to the destination.static longUtil. copyStream(java.io.InputStream source, java.io.OutputStream dest, int bufferSize, long streamSize, CopyStreamListener listener, boolean flush)Copies the contents of an InputStream to an OutputStream using a copy buffer of a given size and notifies the provided CopyStreamListener of the progress of the copy operation by calling its bytesTransferred(long, int) method after each write to the destination.voidCopyStreamAdapter. removeCopyStreamListener(CopyStreamListener listener)Unregisters a CopyStreamListener.
-