API Reference for Enthought Tool Suite 3.0.1

Performs numerically intensive computations on a separate thread.

Computations that take more than ~0.1 second should not be run in the same thread as the user interface.

Typical usage:

>>> worker = Worker(name = "my worker thread")
>>> worker.perform_work(my_function_name, args)
>>> worker.start()
>>> worker.cancel()

Method summary

Methods

© Copyright 2002-2008 Enthought, Inc.