Public Member Functions |
| vtkDummyController (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkDummyController () |
| Undocumented Block
|
override void | CreateOutputWindow () |
| Does nothing.
|
override void | FinalizeWrapper () |
| This method is for setting up the processes.
|
override void | FinalizeWrapper (int arg0) |
| This method is for setting up the processes.
|
override vtkCommunicator | GetCommunicator () |
| If you don't need any special functionality from the controller, you can swap out the dummy communicator for another one.
|
new int | GetLocalProcessId () |
| This method always returns 0.
|
virtual vtkCommunicator | GetRMICommunicator () |
| If you don't need any special functionality from the controller, you can swap out the dummy communicator for another one.
|
override int | IsA (string type) |
| Undocumented Block
|
override void | MultipleMethodExecute () |
| Directly calls multiple method 0.
|
new vtkDummyController | NewInstance () |
| Undocumented Block
|
virtual void | SetCommunicator (vtkCommunicator arg0) |
| If you don't need any special functionality from the controller, you can swap out the dummy communicator for another one.
|
virtual void | SetRMICommunicator (vtkCommunicator arg0) |
| If you don't need any special functionality from the controller, you can swap out the dummy communicator for another one.
|
override void | SingleMethodExecute () |
| Directly calls the single method.
|
| vtkMultiProcessController (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
int | AllGather (IntPtr sendBuffer, IntPtr recvBuffer, int length) |
| Same as gather except that the result ends up on all processes.
|
int | AllGather (string sendBuffer, string recvBuffer, int length) |
| Same as gather except that the result ends up on all processes.
|
int | AllGather (vtkDataArray sendBuffer, vtkDataArray recvBuffer) |
| Same as gather except that the result ends up on all processes.
|
int | AllGatherV (IntPtr sendBuffer, IntPtr recvBuffer, int sendLength, IntPtr recvLengths, IntPtr offsets) |
| Same as GatherV except that the result is placed in all processes.
|
int | AllGatherV (string sendBuffer, string recvBuffer, int sendLength, IntPtr recvLengths, IntPtr offsets) |
| Same as GatherV except that the result is placed in all processes.
|
int | AllGatherV (vtkDataArray sendBuffer, vtkDataArray recvBuffer, IntPtr recvLengths, IntPtr offsets) |
| Same as GatherV except that the result is placed in all processes.
|
int | AllGatherV (vtkDataArray sendBuffer, vtkDataArray recvBuffer) |
| This special form of AllGatherV will automatically determine recvLengths and offsets to tightly pack the data in the recvBuffer in process order. It will also resize recvBuffer in order to accommodate the incoming data (unlike the other GatherV variants).
|
int | AllReduce (IntPtr sendBuffer, IntPtr recvBuffer, int length, int operation) |
| Same as Reduce except that the result is placed in all of the processes.
|
int | AllReduce (string sendBuffer, string recvBuffer, int length, int operation) |
| Same as Reduce except that the result is placed in all of the processes.
|
int | AllReduce (vtkDataArray sendBuffer, vtkDataArray recvBuffer, int operation) |
| Same as Reduce except that the result is placed in all of the processes.
|
void | Barrier () |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Broadcast (IntPtr data, int length, int srcProcessId) |
| Broadcast sends the array in the process with id srcProcessId to all of the other processes. All processes must call these method with the same arguments in order for it to complete.
|
int | Broadcast (string data, int length, int srcProcessId) |
| Broadcast sends the array in the process with id srcProcessId to all of the other processes. All processes must call these method with the same arguments in order for it to complete.
|
int | Broadcast (vtkDataObject data, int srcProcessId) |
| Broadcast sends the array in the process with id srcProcessId to all of the other processes. All processes must call these method with the same arguments in order for it to complete.
|
int | Broadcast (vtkDataArray data, int srcProcessId) |
| Broadcast sends the array in the process with id srcProcessId to all of the other processes. All processes must call these method with the same arguments in order for it to complete.
|
virtual vtkMultiProcessController | CreateSubController (vtkProcessGroup group) |
| Creates a new controller with the processes specified by the given group. The new controller will already be initialized for you. You are responsible for deleting the controller once you are done. It is invalid to pass this method a group with a different communicator than is used by this controller. This operation is collective accross all processes defined in the group. It is undefined what will happen if the group is not the same on all processes. This method must be called by all processes in the controller regardless of whether they are in the group. NULL is returned on all process not in the group.
|
int | Gather (IntPtr sendBuffer, IntPtr recvBuffer, int length, int destProcessId) |
| Gather collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer (on te destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
|
int | Gather (string sendBuffer, string recvBuffer, int length, int destProcessId) |
| Gather collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer (on te destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
|
int | Gather (vtkDataArray sendBuffer, vtkDataArray recvBuffer, int destProcessId) |
| Gather collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer (on te destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
|
int | GatherV (IntPtr sendBuffer, IntPtr recvBuffer, int sendLength, IntPtr recvLengths, IntPtr offsets, int destProcessId) |
| GatherV is the vector variant of Gather. It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength argument defines how much the local process sends to destProcessId and recvLengths is an array containing the amount destProcessId receives from each process, in rank order.
|
int | GatherV (string sendBuffer, string recvBuffer, int sendLength, IntPtr recvLengths, IntPtr offsets, int destProcessId) |
| GatherV is the vector variant of Gather. It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength argument defines how much the local process sends to destProcessId and recvLengths is an array containing the amount destProcessId receives from each process, in rank order.
|
int | GatherV (vtkDataArray sendBuffer, vtkDataArray recvBuffer, IntPtr recvLengths, IntPtr offsets, int destProcessId) |
| GatherV is the vector variant of Gather. It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId . Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength argument defines how much the local process sends to destProcessId and recvLengths is an array containing the amount destProcessId receives from each process, in rank order.
|
int | GatherV (vtkDataArray sendBuffer, vtkDataArray recvBuffer, int destProcessId) |
| This special form of GatherV will automatically determine recvLengths and offsets to tightly pack the data in the recvBuffer in process order. It will also resize recvBuffer in order to accommodate the incoming data (unlike the other GatherV variants).
|
virtual int | GetBreakFlag () |
| Setting this flag to 1 will cause the ProcessRMIs loop to return. This also causes vtkUpStreamPorts to return from their WaitForUpdate loops.
|
int | GetCount () |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | GetNumberOfProcesses () |
| Set the number of processes you will be using. This defaults to the maximum number available. If you set this to a value higher than the default, you will get an error.
|
virtual vtkMultiProcessController | PartitionController (int localColor, int localKey) |
| Partitions this controller based on a coloring. That is, each process passes in a color. All processes with the same color are grouped into the same partition. The processes are ordered by their self-assigned key. Lower keys have lower process ids. Ties are broken by the current process ids. (For example, if all the keys are 0, then the resulting processes will be ordered in the same way.) This method returns a new controller to each process that represents the local partition. This is basically the same operation as MPI_Comm_split.
|
int | ProcessRMIs (int reportErrors, int dont_loop) |
| Calling this method gives control to the controller to start processing RMIs. Possible return values are: RMI_NO_ERROR, RMI_TAG_ERROR : rmi tag could not be received, RMI_ARG_ERROR : rmi arg could not be received. If reportErrors is false, no vtkErrorMacro is called. ProcessRMIs() calls ProcessRMIs(int) with reportErrors = 0. If dont_loop is 1, this call just process one RMI message and exits.
|
int | ProcessRMIs () |
| Calling this method gives control to the controller to start processing RMIs. Possible return values are: RMI_NO_ERROR, RMI_TAG_ERROR : rmi tag could not be received, RMI_ARG_ERROR : rmi arg could not be received. If reportErrors is false, no vtkErrorMacro is called. ProcessRMIs() calls ProcessRMIs(int) with reportErrors = 0. If dont_loop is 1, this call just process one RMI message and exits.
|
int | Receive (IntPtr data, int length, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Receive (string data, int length, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Receive (vtkDataObject data, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Receive (vtkDataArray data, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
vtkDataObject | ReceiveDataObject (int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Reduce (IntPtr sendBuffer, IntPtr recvBuffer, int length, int operation, int destProcessId) |
| Reduce an array to the given destination process. This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
|
int | Reduce (string sendBuffer, string recvBuffer, int length, int operation, int destProcessId) |
| Reduce an array to the given destination process. This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
|
int | Reduce (vtkDataArray sendBuffer, vtkDataArray recvBuffer, int operation, int destProcessId) |
| Reduce an array to the given destination process. This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
|
void | RemoveAllRMICallbacks (int tag) |
| ---------------— RMIs -----------------—
|
int | RemoveFirstRMI (int tag) |
| ---------------— RMIs -----------------—
|
int | RemoveRMI (uint id) |
| ---------------— RMIs -----------------—
|
bool | RemoveRMICallback (uint id) |
| ---------------— RMIs -----------------—
|
int | Scatter (IntPtr sendBuffer, IntPtr recvBuffer, int length, int srcProcessId) |
| Scatter takes an array in the process with id srcProcessId and distributes it. Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length values, process 1 receives the second length values, and so on. Scatter is the inverse operation of Gather.
|
int | Scatter (string sendBuffer, string recvBuffer, int length, int srcProcessId) |
| Scatter takes an array in the process with id srcProcessId and distributes it. Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length values, process 1 receives the second length values, and so on. Scatter is the inverse operation of Gather.
|
int | Scatter (vtkDataArray sendBuffer, vtkDataArray recvBuffer, int srcProcessId) |
| Scatter takes an array in the process with id srcProcessId and distributes it. Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length values, process 1 receives the second length values, and so on. Scatter is the inverse operation of Gather.
|
int | ScatterV (IntPtr sendBuffer, IntPtr recvBuffer, IntPtr sendLengths, IntPtr offsets, int recvLength, int srcProcessId) |
| ScatterV is the vector variant of Scatter. It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths and offsets arrays.
|
int | ScatterV (string sendBuffer, string recvBuffer, IntPtr sendLengths, IntPtr offsets, int recvLength, int srcProcessId) |
| ScatterV is the vector variant of Scatter. It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths and offsets arrays.
|
int | Send (IntPtr data, int length, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Send (string data, int length, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Send (vtkDataObject data, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
int | Send (vtkDataArray data, int remoteProcessId, int tag) |
| Communicator which is a copy of the current user level communicator except the context; i.e. even if the tags are the same, the RMI messages will not interfere with user level messages. Note that since the communicators can be created differently depending on the type of controller, the subclasses are responsible of deleting them.
|
virtual void | SetBreakFlag (int _arg) |
| Setting this flag to 1 will cause the ProcessRMIs loop to return. This also causes vtkUpStreamPorts to return from their WaitForUpdate loops.
|
void | SetNumberOfProcesses (int num) |
| Set the number of processes you will be using. This defaults to the maximum number available. If you set this to a value higher than the default, you will get an error.
|
void | SetSingleProcessObject (vtkProcess p) |
| Set the number of processes you will be using. This defaults to the maximum number available. If you set this to a value higher than the default, you will get an error.
|
void | TriggerBreakRMIs () |
| A conveniance method. Called on process 0 to break "ProcessRMIs" loop on all other processes.
|
void | TriggerRMI (int remoteProcessId, IntPtr arg, int argLength, int tag) |
| A method to trigger a method invocation in another process.
|
void | TriggerRMI (int remoteProcessId, string arg, int tag) |
| Convenience method when the arg is a string.
|
void | TriggerRMI (int remoteProcessId, int tag) |
| Convenience method when there is no argument.
|
void | TriggerRMIOnAllChildren (IntPtr arg, int argLength, int tag) |
| This is a convenicence method to trigger an RMI call on all the "children" of the current node. The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
|
void | TriggerRMIOnAllChildren (string arg, int tag) |
| This is a convenicence method to trigger an RMI call on all the "children" of the current node. The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
|
void | TriggerRMIOnAllChildren (int tag) |
| This is a convenicence method to trigger an RMI call on all the "children" of the current node. The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
|
| vtkObject (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkObject () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
|
uint | AddObserver (uint arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
uint | AddObserver (string arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
virtual void | DebugOff () |
| Turn debugging output off.
|
virtual void | DebugOn () |
| Turn debugging output on.
|
vtkCommand | GetCommand (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
byte | GetDebug () |
| Get the value of the debug flag.
|
virtual uint | GetMTime () |
| Return this object's modified time.
|
int | HasObserver (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (uint arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (string arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
virtual void | Modified () |
| Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data. The modification time is a unique monotonically increasing unsigned long integer.
|
void | RemoveAllObservers () |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObserver (vtkCommand arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObserver (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | SetDebug (byte debugFlag) |
| Set the value of the debug flag. A non-zero value turns debugging on.
|
override string | ToString () |
| Returns the result of calling vtkObject::Print as a C# string.
|
delegate void | vtkObjectEventHandler (vtkObject sender, vtkObjectEventArgs e) |
| Generic signature for all vtkObject events.
|
void | RemoveAllHandlersForAllEvents () |
| Call RemoveAllHandlers on each non-null vtkObjectEventRelay. TODO: This method needs to get called by the generated Dispose. Make that happen...
|
| vtkObjectBase (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkObjectBase () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
|
virtual void | Register (vtkObjectBase o) |
| Increase the reference count (mark as used by another object).
|
virtual void | FastDelete () |
| Delete a reference to this object. This version will not invoke garbage collection and can potentially leak the object if it is part of a reference loop. Use this method only when it is known that the object has another reference and would not be collected if a full garbage collection check were done.
|
string | GetClassName () |
| Return the class name as a string. This method is defined in all subclasses of vtkObjectBase with the vtkTypeMacro found in vtkSetGet.h.
|
int | GetReferenceCount () |
| Return the current reference count of this object.
|
void | SetReferenceCount (int arg0) |
| Sets the reference count. (This is very dangerous, use with care.)
|