Interface IIncomingFileTransferReceiveStartEvent
- All Superinterfaces:
Event
,IFileTransferEvent
,IIncomingFileTransferEvent
Event sent to
IFileTransferListener
associated with
IIncomingFileTransfer
instances-
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Cancel incoming file transferGet IFileID for incoming fileGet response headers.Get incoming file transfer object by specifying a local File instance to save the received contents to.receive
(File localFileToSave, FileTransferJob fileTransferJob) Just likereceive(File)
but this method also give the caller a chance to provide a factory that creates the job that will perform the actual file transfer.receive
(OutputStream streamToStore) Get incoming file transfer by specifying an OutputStream instance to save the received contents to.receive
(OutputStream streamToStore, FileTransferJob fileTransferJob) Just likereceive(OutputStream)
but this method also give the caller a chance to provide a factory that creates the job that will perform the actual file transfer.Methods inherited from interface org.eclipse.ecf.filetransfer.events.IIncomingFileTransferEvent
getSource
-
Method Details
-
getFileID
IFileID getFileID()Get IFileID for incoming file- Returns:
- IFileID for this file transfer event. Will not be
null
.
-
receive
Get incoming file transfer object by specifying a local File instance to save the received contents to.- Parameters:
localFileToSave
- the file on the local file system to receive and save the remote file. Must not benull
. If the file already exists, its content will be overwritten by any data received.- Returns:
- IIncomingFileTransfer the incoming file transfer object. Will not
be
null
. - Throws:
IOException
- if localFileToSave cannot be opened for writing
-
receive
IIncomingFileTransfer receive(File localFileToSave, FileTransferJob fileTransferJob) throws IOException Just likereceive(File)
but this method also give the caller a chance to provide a factory that creates the job that will perform the actual file transfer. The intended use for this is when the user of the framework needs more elaborate control over such jobs such as waiting for a group of parallel file transfers to complete. Such functionality can for instance exploit the Eclipse runtime concept of Job families.- Parameters:
localFileToSave
- the file on the local file system to receive and save the remote file. Must not benull
. If the file already exists, its content will be overwritten by any data received.fileTransferJob
- A subclass ofFileTransferJob
to use to run the actual transfer. Ifnull
, provider will create default implementation. NOTE: the given job should *not* be scheduled/started prior to being provided as a parameter to this method.- Returns:
- IIncomingFileTransfer the incoming file transfer object. NOTE:
the caller is responsible for calling
OutputStream.close()
on the OutputStream provided. If the stream provided is buffered, thenBufferedOutputStream.flush()
should be called to guaranteed that the data received is actually written to the given OutputStream. - Throws:
IOException
- if streamToStore cannot be opened for writing- Since:
- 2.0
-
receive
Get incoming file transfer by specifying an OutputStream instance to save the received contents to. NOTE: the caller is responsible for callingOutputStream.close()
on the OutputStream provided. If the stream provided is buffered, thenBufferedOutputStream.flush()
should be called to guaranteed that the data received is actually written to the given OutputStream.- Parameters:
streamToStore
- the output stream to store the incoming file. Must not benull
.- Returns:
- IIncomingFileTransfer the incoming file transfer object. NOTE:
the caller is responsible for calling
OutputStream.close()
on the OutputStream provided. If the stream provided is buffered, thenBufferedOutputStream.flush()
should be called to guaranteed that the data received is actually written to the given OutputStream. - Throws:
IOException
- if streamToStore cannot be opened for writing
-
receive
IIncomingFileTransfer receive(OutputStream streamToStore, FileTransferJob fileTransferJob) throws IOException Just likereceive(OutputStream)
but this method also give the caller a chance to provide a factory that creates the job that will perform the actual file transfer. The intended use for this is when the user of the framework needs more elaborate control over such jobs such as waiting for a group of parallel file transfers to complete. Such functionality can for instance exploit the Eclipse runtime concept of Job families.- Parameters:
streamToStore
- the output stream to store the incoming file. Must not benull
.fileTransferJob
- A subclass ofFileTransferJob
to use to run the actual transfer. Ifnull
, provider will create default implementation. NOTE: the given job should *not* be scheduled/started prior to being provided as a parameter to this method.- Returns:
- IIncomingFileTransfer the incoming file transfer object. NOTE:
the caller is responsible for calling
OutputStream.close()
on the OutputStream provided. If the stream provided is buffered, thenBufferedOutputStream.flush()
should be called to guaranteed that the data received is actually written to the given OutputStream. - Throws:
IOException
- if streamToStore cannot be opened for writing- Since:
- 2.0
-
cancel
void cancel()Cancel incoming file transfer -
getResponseHeaders
Map getResponseHeaders()Get response headers.- Returns:
- Map of response headers.
null
if no headers available. - Since:
- 4.0
-