ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkConditionVariable Class Reference

vtkConditionVariable - mutual exclusion locking class More...

Inheritance diagram for Kitware.VTK.vtkConditionVariable:
[legend]
Collaboration diagram for Kitware.VTK.vtkConditionVariable:
[legend]

List of all members.

Public Member Functions

 vtkConditionVariable (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkConditionVariable ()
 Undocumented Block.
void Broadcast ()
 Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.
override int IsA (string type)
 Undocumented Block.
new vtkConditionVariable NewInstance ()
 Undocumented Block.
void Signal ()
 Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.
int Wait (vtkMutexLock arg0)
 Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.

Static Public Member Functions

static new vtkConditionVariable New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkConditionVariable SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkConditionVariable"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "20vtkConditionVariable"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkConditionVariable_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkConditionVariable_Broadcast_01 (HandleRef pThis)
static internal int vtkConditionVariable_IsA_02 (HandleRef pThis, string type)
static internal int vtkConditionVariable_IsTypeOf_03 (string type)
static internal IntPtr vtkConditionVariable_NewInstance_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkConditionVariable_SafeDownCast_06 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkConditionVariable_Signal_07 (HandleRef pThis)
static internal int vtkConditionVariable_Wait_08 (HandleRef pThis, HandleRef arg0)

Static Private Member Functions

static vtkConditionVariable ()
 Automatically generated type registration mechanics.

Detailed Description

vtkConditionVariable - mutual exclusion locking class

Description vtkConditionVariable allows the locking of variables which are accessed through different threads. This header file also defines vtkSimpleConditionVariable which is not a subclass of vtkObject.

The win32 implementation is based on notes provided by Douglas C. Schmidt and Irfan Pyarali, Department of Computer Science, Washington University, St. Louis, Missouri. http://www.cs.wustl.edu/~schmidt/win32-cv-1.html


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkConditionVariable.vtkConditionVariable ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.

Parameters:
mutexThe mutex that should be locked on entry and will be locked on exit (but not in between)
Return values:
Normally,thisfunction returns 0. Should a thread be interrupted by a signal, a non-zero value may be returned.
override void Kitware.VTK.vtkConditionVariable.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkObject.

override int Kitware.VTK.vtkConditionVariable.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

static new int Kitware.VTK.vtkConditionVariable.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Here is the call graph for this function:

Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.

Parameters:
mutexThe mutex that should be locked on entry and will be locked on exit (but not in between)
Return values:
Normally,thisfunction returns 0. Should a thread be interrupted by a signal, a non-zero value may be returned.
static internal void Kitware.VTK.vtkConditionVariable.vtkConditionVariable_Broadcast_01 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkConditionVariable.vtkConditionVariable_IsA_02 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkConditionVariable.vtkConditionVariable_IsTypeOf_03 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkConditionVariable.vtkConditionVariable_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkConditionVariable.vtkConditionVariable_NewInstance_05 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkConditionVariable.vtkConditionVariable_SafeDownCast_06 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkConditionVariable.vtkConditionVariable_Signal_07 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkConditionVariable.vtkConditionVariable_Wait_08 ( HandleRef  pThis,
HandleRef  arg0 
) [private]

Wait for the condition to change. Upon entry, the mutex must be locked and the lock held by the calling thread. Upon exit, the mutex will be locked and held by the calling thread. Between entry and exit, the mutex will be unlocked and may be held by other threads.

Parameters:
mutexThe mutex that should be locked on entry and will be locked on exit (but not in between)
Return values:
Normally,thisfunction returns 0. Should a thread be interrupted by a signal, a non-zero value may be returned.

Member Data Documentation

new readonly string Kitware.VTK.vtkConditionVariable.MRClassNameKey = "20vtkConditionVariable" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

new const string Kitware.VTK.vtkConditionVariable.MRFullTypeName = "Kitware.VTK.vtkConditionVariable"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.


The documentation for this class was generated from the following file: