|
Uranium
Application Framework
|
A Job subclass that performs file loading. More...
Public Member Functions | |
| def | __init__ (self, filename, handler=None) |
| def | getFileName (self) |
| def | run (self) |
| Perform the actual task of this job. More... | |
Public Member Functions inherited from UM.Job.Job | |
| def | __init__ (self) |
| def | getResult (self) |
| Get the result of the job. More... | |
| def | setResult (self, any result) |
| Set the result of this job. More... | |
| def | setError (self, Exception error) |
| Set an exception that was thrown while the job was being executed. More... | |
| def | start (self) |
| Start the job. More... | |
| def | cancel (self) |
| Cancel the job. More... | |
| bool | isRunning (self) |
| Check whether the job is currently running. More... | |
| bool | isFinished (self) |
| Check whether the job has finished processing. More... | |
| bool | hasError (self) |
| Check whether the Job has encountered an error during execution. More... | |
| Exception | getError (self) |
| Get the error that was encountered during execution. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from UM.Job.Job | |
| def | yieldThread () |
| Utility function that allows us to yield thread processing. More... | |
Static Public Attributes inherited from UM.Job.Job | |
| finished = Signal() | |
| Emitted when the job has finished processing. More... | |
| progress = Signal() | |
| Emitted when the job processing has progressed. More... | |
A Job subclass that performs file loading.
| def UM.FileHandler.ReadFileJob.ReadFileJob.run | ( | self | ) |
Perform the actual task of this job.
Should be reimplemented by subclasses.
| NotImplementedError |
Reimplemented from UM.Job.Job.
Reimplemented in UM.Mesh.ReadMeshJob.ReadMeshJob.