Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
vtkInputPort Class Reference
#include <vtkInputPort.h>
Inheritance diagram for vtkInputPort:
[legend]Collaboration diagram for vtkInputPort:
[legend]List of all members.
Detailed Description
Receives data from another process.
- Date:
-
2002/05/17 01:50:34
- Revision:
-
1.8
InputPort 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. An input port is used as a source (input to a process). One is placed at the start of a pipeline, and has a single corresponding output port in another process (specified by RemoteProcessId).
- See also:
-
vtkOutputPort vtkMultiProcessController
- Events:
-
vtkCommand::StartEvent vtkCommand::EndEvent
- Created by:
-
- CVS contributions (if > 5%):
-
- CVS logs (CVSweb):
-
- .
h
(/Parallel/vtkInputPort.h)
- .
cxx
(/Parallel/vtkInputPort.cxx)
- Examples:
-
vtkInputPort (Examples)
- Tests:
-
vtkInputPort (Tests)
Definition at line 66 of file vtkInputPort.h.
Member Typedef Documentation
Member Enumeration Documentation
|
- Enumeration values:
-
DOWN_DATA_TIME_TAG |
|
UPDATE_EXTENT_TAG |
|
TRANSFER_NEEDED_TAG |
|
INFORMATION_TRANSFER_TAG |
|
DATA_TRANSFER_TAG |
|
NEW_DATA_TIME_TAG |
|
Definition at line 128 of file vtkInputPort.h. |
Constructor & Destructor Documentation
vtkInputPort::vtkInputPort |
( |
|
) |
[protected] |
|
vtkInputPort::~vtkInputPort |
( |
|
) |
[protected] |
|
Member Function Documentation
vtkInputPort* vtkInputPort::New |
( |
|
) |
[static] |
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject. |
virtual const char* vtkInputPort::GetClassName |
( |
|
) |
[virtual] |
|
int vtkInputPort::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkSource. |
virtual int vtkInputPort::IsA |
( |
const char * |
type |
) |
[virtual] |
|
|
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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkSource. |
vtkInputPort* vtkInputPort::SafeDownCast |
( |
vtkObject * |
o |
) |
[static] |
|
void vtkInputPort::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
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 vtkSource. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
|
Note: You have to ask for the right type, and it has to match the type of the up stream port input, or you will get an error. We have to live with the fact that the error will not occur until an update is called. |
virtual void vtkInputPort::SetRemoteProcessId |
( |
int |
|
) |
[virtual] |
|
|
The matching OutputPort is specified by the output port's process and a tag. There can be more than one output port per process. THE TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
virtual int vtkInputPort::GetRemoteProcessId |
( |
|
) |
[virtual] |
|
|
The matching OutputPort is specified by the output port's process and a tag. There can be more than one output port per process. THE TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
virtual void vtkInputPort::SetTag |
( |
int |
|
) |
[virtual] |
|
|
The matching OutputPort is specified by the output port's process and a tag. There can be more than one output port per process. THE TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
virtual int vtkInputPort::GetTag |
( |
|
) |
[virtual] |
|
|
The matching OutputPort is specified by the output port's process and a tag. There can be more than one output port per process. THE TAG MUST BE EVEN BECAUSE TWO RMIs ARE CREATED FROM IT!!! |
void vtkInputPort::UpdateInformation |
( |
|
) |
[virtual] |
|
|
Need to override to propagate across port.
Reimplemented from vtkSource. |
void vtkInputPort::PropagateUpdateExtent |
( |
vtkDataObject * |
vtkNotUsed(output) |
) |
[inline] |
|
|
Need to override to propagate across port.
Definition at line 100 of file vtkInputPort.h. |
|
Need to override to propagate across port
Reimplemented from vtkSource. |
void vtkInputPort::TriggerAsynchronousUpdate |
( |
|
) |
[virtual] |
|
|
Need to override to trigger the update across the port
Reimplemented from vtkSource. |
|
Access to the controller used for communication. By default, the global controller is used.
Definition at line 111 of file vtkInputPort.h. |
|
Access to the controller used for communication. By default, the global controller is used. |
virtual void vtkInputPort::SetDoUpdateInformation |
( |
int |
|
) |
[virtual] |
|
|
If DoUpdateInformation if false (it is true by default), UpdateInformation is not performed during Update. This can be used to avoid unnecessary communication once the data has been transferred. However, if the pipeline changes upstream, DoUpdateInformation has to be set to true again. Otherwise, Updata will not occur. |
virtual int vtkInputPort::GetDoUpdateInformation |
( |
|
) |
[virtual] |
|
|
If DoUpdateInformation if false (it is true by default), UpdateInformation is not performed during Update. This can be used to avoid unnecessary communication once the data has been transferred. However, if the pipeline changes upstream, DoUpdateInformation has to be set to true again. Otherwise, Updata will not occur. |
Member Data Documentation
int vtkInputPort::RemoteProcessId [protected]
|
|
int vtkInputPort::Tag [protected]
|
|
unsigned long vtkInputPort::DataTime [protected]
|
|
unsigned long vtkInputPort::UpStreamMTime [protected]
|
|
int vtkInputPort::TransferNeeded [protected]
|
|
int vtkInputPort::DoUpdateInformation [protected]
|
|
The documentation for this class was generated from the following file: