class documentation
class ExclusiveWorkQueue: (source)
Undocumented
| Method | __del__ |
When garbage collected make sure we kill off our underlying thread. |
| Method | perform |
Perform the given work on the underlying thread, delivering the result back to the main thread with ExclusiveWorkQueue._deliver. |
| Method | quit |
Allow this thread to stop, and invalidate this ExclusiveWorkQueue by removing its _worker attribute. |
| Method | worker |
Assert that the worker should still be present, then return it (invalidating it if the flag is passed). |
| Class Variable | _deliver |
Undocumented |
| Instance Variable | _worker |
Undocumented |
Perform the given work on the underlying thread, delivering the result back to the main thread with ExclusiveWorkQueue._deliver.
Allow this thread to stop, and invalidate this ExclusiveWorkQueue by removing its _worker attribute.