Section: Visualization Toolkit Common Classes
To create an instance of class vtkMultiThreader, simply invoke its constructor as follows
obj = vtkMultiThreader
obj
is an instance of the vtkMultiThreader class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkMultiThreader = obj.NewInstance ()
vtkMultiThreader = obj.SafeDownCast (vtkObject o)
obj.SetNumberOfThreads (int )
- Get/Set the number of threads to create. It will be clamped to the range
1 - VTK_MAX_THREADS, so the caller of this method should check that the
requested number of threads was accepted.
int = obj.GetNumberOfThreadsMinValue ()
- Get/Set the number of threads to create. It will be clamped to the range
1 - VTK_MAX_THREADS, so the caller of this method should check that the
requested number of threads was accepted.
int = obj.GetNumberOfThreadsMaxValue ()
- Get/Set the number of threads to create. It will be clamped to the range
1 - VTK_MAX_THREADS, so the caller of this method should check that the
requested number of threads was accepted.
int = obj.GetNumberOfThreads ()
- Get/Set the number of threads to create. It will be clamped to the range
1 - VTK_MAX_THREADS, so the caller of this method should check that the
requested number of threads was accepted.