Top |
double | spice_file_transfer_task_get_progress () |
char * | spice_file_transfer_task_get_filename () |
void | spice_file_transfer_task_cancel () |
GCancellable * | cancellable | Read / Write / Construct Only |
SpiceMainChannel * | channel | Read / Write / Construct Only |
GFile * | file | Read / Write / Construct Only |
guint | id | Read / Write / Construct Only |
gdouble | progress | Read |
SpiceFileTransferTask is an object that represents a particular file transfer between the client and the guest. The properties and signals of the object can be used to monitor the status and result of the transfer. The Main Channel's “new-file-transfer” signal will be emitted whenever a new file transfer task is initiated.
double
spice_file_transfer_task_get_progress (SpiceFileTransferTask *self
);
Convenience function for retrieving the current progress of this file transfer task.
char *
spice_file_transfer_task_get_filename (SpiceFileTransferTask *self
);
Gets the name of the file being transferred in this task
void
spice_file_transfer_task_cancel (SpiceFileTransferTask *self
);
Cancels the file transfer task. Note that depending on how the file transfer was initiated, multiple file transfer tasks may share a single “cancellable” object, so canceling one task may result in the cancellation of other tasks.
struct SpiceFileTransferTask;
The FileTransferTask struct is opaque and should not be accessed directly.
struct SpiceFileTransferTaskClass { GObjectClass parent_class; };
Class structure for SpiceFileTransferTask.
“cancellable”
property“cancellable” GCancellable *
A cancellable object used to cancel the file transfer
Flags: Read / Write / Construct Only
“channel”
property“channel” SpiceMainChannel *
The main channel that owns the file transfer task
Flags: Read / Write / Construct Only
“file”
property“file” GFile *
The file that is being transferred in this file transfer task
Flags: Read / Write / Construct Only
“id”
property“id” guint
The ID of the file transfer task
Flags: Read / Write / Construct Only
Default value: 0
“progress”
property“progress” gdouble
The current state of the file transfer. This value indicates a percentage, and ranges from 0 to 100. Listen for change notifications on this property to be updated whenever the file transfer progress changes.
Flags: Read
Allowed values: [0,100]
Default value: 0
“finished”
signalvoid user_function (SpiceFileTransferTask *task, GError *error, gpointer user_data)
The “finished” signal is emitted when the file transfer has completed transferring to the guest.
task |
the file transfer task that emitted the signal |
|
error |
the error state of the transfer. Will be |
[transfer none] |
user_data |
user data set when the signal handler was connected. |
Flags: Run First