#include <vtkOutputPort.h>
Inheritance diagram for vtkOutputPort:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | WaitForUpdate () |
void | SetParameterMethod (void(*f)(void *), void *arg) |
void | SetParameterMethodArgDelete (void(*f)(void *)) |
void | SetInput (vtkDataObject *input) |
vtkDataObject * | GetInput () |
void | SetTag (int tag) |
virtual int | GetTag () |
vtkMultiProcessController * | GetController () |
virtual void | SetController (vtkMultiProcessController *) |
void | TriggerUpdateInformation (int remoteProcessId) |
void | TriggerUpdate (int remoteProcessId) |
virtual void | SetPipelineFlag (int) |
virtual int | GetPipelineFlag () |
virtual void | PipelineFlagOn () |
virtual void | PipelineFlagOff () |
Static Public Methods | |
vtkOutputPort * | New () |
int | IsTypeOf (const char *type) |
vtkOutputPort * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkOutputPort () | |
~vtkOutputPort () | |
Protected Attributes | |
int | Tag |
vtkMultiProcessController * | Controller |
vtkTimeStamp | UpdateTime |
int | PipelineFlag |
void(* | ParameterMethod )(void *) |
void(* | ParameterMethodArgDelete )(void *) |
void * | ParameterMethodArg |
OutputPort Connects the pipeline in this process to one in another processes. It communicates all the pipeline protocol so that the fact you are running in multiple processes is transparent. The output port is placed at the end of the pipeline (an output for a process). It can have multiple corresponding input ports in other processes that receive its data. Updates in a port are triggered asynchronously, so filter with multiple inputs will take advantage of task parallelism.
Definition at line 74 of file vtkOutputPort.h.
|
|
|
|
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkProcessObject. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkProcessObject. |
|
Should accept vtkDataObjects in the future. |
|
Should accept vtkDataObjects in the future. |
|
Output is specified by the process the output port is in, and a tag so there can be more than one output port per process. Tag must be set before this port can be used. THIS TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
|
Output is specified by the process the output port is in, and a tag so there can be more than one output port per process. Tag must be set before this port can be used. THIS TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
|
This just forwards the wait onto the controller, which will wait for a message for any of its ports (or any RMI). Since this method is implemented in the controller, multiple output ports can be waiting at once (as long as they share a controller). This method will only return if the BreakFlag is turned on in the controller. The controller automatically creates a break rmi with the vtkMultiProcessController::BREAK_RMI_TAG for doing this remotely. Definition at line 103 of file vtkOutputPort.h. |
|
Access to the global controller. Definition at line 107 of file vtkOutputPort.h. |
|
Access to the global controller. |
|
RMI function needs to call this. Should make function a friend. No one else should call it. |
|
RMI function needs to call this. Should make function a friend. No one else should call it. |
|
Trying to get pipeline parallelism working. |
|
Trying to get pipeline parallelism working. |
|
Trying to get pipeline parallelism working. |
|
Trying to get pipeline parallelism working. |
|
This method is called after the port updates. It is meant to change a parameter if a series is being processed (for pipeline parallelism). |
|
Set the arg delete method. This is used to free user memory. |
|
Definition at line 137 of file vtkOutputPort.h. |
|
Definition at line 139 of file vtkOutputPort.h. |
|
Definition at line 140 of file vtkOutputPort.h. |
|
Definition at line 143 of file vtkOutputPort.h. |
|
|
|
|
|
Definition at line 146 of file vtkOutputPort.h. |