Uses of Interface
wjhk.jupload2.upload.FileUploadManagerThread

Packages that use FileUploadManagerThread
wjhk.jupload2.gui Implementation of caching and special algorithms for various file types. 
wjhk.jupload2.upload This package contains the code that actually executes the upload (see below for a full description of the way the upload is executed in the JUpload code). 
 

Uses of FileUploadManagerThread in wjhk.jupload2.gui
 

Methods in wjhk.jupload2.gui that return FileUploadManagerThread
 FileUploadManagerThread JUploadPanel.getFileUploadManagerThread()
           
 

Uses of FileUploadManagerThread in wjhk.jupload2.upload
 

Classes in wjhk.jupload2.upload that implement FileUploadManagerThread
 class FileUploadManagerThreadImpl
          This class is responsible for managing the upload.
 

Fields in wjhk.jupload2.upload declared as FileUploadManagerThread
(package private)  FileUploadManagerThread PacketConstructionThread.fileUploadManagerThread
          The thread which globally manages the upload
(package private)  FileUploadManagerThread FilePreparationThread.fileUploadManagerThread
          The thread which globally manages the upload
(package private)  FileUploadManagerThread DefaultFileUploadThread.fileUploadManagerThread
          The upload manager.
 

Methods in wjhk.jupload2.upload with parameters of type FileUploadManagerThread
 void FileUploadThread.setFileUploadThreadManager(FileUploadManagerThread fileUploadManagerThread)
          Changes the FileUploadManagerThread.
 void DefaultFileUploadThread.setFileUploadThreadManager(FileUploadManagerThread fileUploadManagerThread)
          Changes the FileUploadManagerThread.
 

Constructors in wjhk.jupload2.upload with parameters of type FileUploadManagerThread
DefaultFileUploadThread(String threadName, BlockingQueue<UploadFilePacket> packetQueue, UploadPolicy uploadPolicy, FileUploadManagerThread fileUploadManagerThread)
          Creates a new instance.
FilePreparationThread(BlockingQueue<UploadFileData> preparedFileQueue, FileUploadManagerThread fileUploadManagerThread, UploadPolicy uploadPolicy)
           
FileUploadThreadFTP(UploadPolicy uploadPolicy, BlockingQueue<UploadFilePacket> packetQueue, FileUploadManagerThread fileUploadManagerThread)
          Creates a new instance.
FileUploadThreadHTTP(UploadPolicy uploadPolicy, BlockingQueue<UploadFilePacket> packetQueue, FileUploadManagerThread fileUploadManagerThread)
          Creates a new instance.
PacketConstructionThread(BlockingQueue<UploadFileData> preparedFileQueue, BlockingQueue<UploadFilePacket> packetQueue, FileUploadManagerThread fileUploadManagerThread, UploadPolicy uploadPolicy)
           
UploadFileData(FileData fileDataParam, int numOfFileInCurrentRequest, FileUploadManagerThread fileUploadManagerThreadParam, UploadPolicy uploadPolicyParam)
          Standard constructor for the UploadFileData class.