|
virtual vtkTypeBool | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
vtkInformationIntegerRequestKey * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
| vtkInformationIntegerRequestKey (const char *name, const char *location) |
|
| ~vtkInformationIntegerRequestKey () override |
|
bool | NeedToExecute (vtkInformation *pipelineInfo, vtkInformation *dobjInfo) override |
| Returns true if a value of type DataKey does not exist in dobjInfo or if it is different that the value stored in pipelineInfo using this key.
|
|
void | StoreMetaData (vtkInformation *request, vtkInformation *pipelineInfo, vtkInformation *dobjInfo) override |
| Copies the value stored in pipelineInfo using this key into dobjInfo.
|
|
void | CopyDefaultInformation (vtkInformation *request, vtkInformation *fromInfo, vtkInformation *toInfo) override |
| Copies the value stored in fromInfo using this key into toInfo if request has the REQUEST_UPDATE_EXTENT key.
|
|
virtual vtkTypeBool | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
vtkInformationIntegerKey * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
| vtkInformationIntegerKey (const char *name, const char *location) |
|
| ~vtkInformationIntegerKey () override |
|
void | ShallowCopy (vtkInformation *from, vtkInformation *to) override |
| Copy the entry associated with this key from one information object to another.
|
|
void | Print (ostream &os, vtkInformation *info) override |
| Print the key's value in an information object to a stream.
|
|
void | Set (vtkInformation *info, int) |
| Get/Set the value associated with this key in the given information object.
|
|
int | Get (vtkInformation *info) |
| Get/Set the value associated with this key in the given information object.
|
|
| vtkBaseTypeMacro (vtkInformationKey, vtkObjectBase) |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
void | Register (vtkObjectBase *) override |
| Prevent normal vtkObject reference counting behavior.
|
|
void | UnRegister (vtkObjectBase *) override |
| Prevent normal vtkObject reference counting behavior.
|
|
const char * | GetName () |
| Get the name of the key.
|
|
const char * | GetLocation () |
| Get the location of the key.
|
|
virtual void | ShallowCopy (vtkInformation *from, vtkInformation *to)=0 |
| Copy the entry associated with this key from one information object to another.
|
|
virtual void | DeepCopy (vtkInformation *from, vtkInformation *to) |
| Duplicate (new instance created) the entry associated with this key from one information object to another (new instances of any contained vtkInformation and vtkInformationVector objects are created).
|
|
virtual int | Has (vtkInformation *info) |
| Check whether this key appears in the given information object.
|
|
virtual void | Remove (vtkInformation *info) |
| Remove this key from the given information object.
|
|
virtual void | Report (vtkInformation *info, vtkGarbageCollector *collector) |
| Report a reference this key has in the given information object.
|
|
virtual bool | NeedToExecute (vtkInformation *vtkNotUsed(pipelineInfo), vtkInformation *vtkNotUsed(dobjInfo)) |
| This function is only relevant when the pertaining key is used in a VTK pipeline.
|
|
virtual void | StoreMetaData (vtkInformation *vtkNotUsed(request), vtkInformation *vtkNotUsed(pipelineInfo), vtkInformation *vtkNotUsed(dobjInfo)) |
| This function is only relevant when the pertaining key is used in a VTK pipeline.
|
|
virtual void | CopyDefaultInformation (vtkInformation *vtkNotUsed(request), vtkInformation *vtkNotUsed(fromInfo), vtkInformation *vtkNotUsed(toInfo)) |
| This function is only relevant when the pertaining key is used in a VTK pipeline.
|
|
| vtkInformationKey (const char *name, const char *location) |
| Key instances are static data that need to be created and destroyed.
|
|
| ~vtkInformationKey () override |
| Key instances are static data that need to be created and destroyed.
|
|
void | Print (vtkInformation *info) |
| Print the key's value in an information object to a stream.
|
|
const char * | GetClassName () const |
| Return the class name as a string.
|
|
virtual vtkTypeBool | IsA (const char *name) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
| Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class).
|
|
virtual void | Delete () |
| Delete a VTK object.
|
|
virtual void | FastDelete () |
| Delete a reference to this object.
|
|
void | InitializeObjectBase () |
|
void | Print (ostream &os) |
| Print an object to an ostream.
|
|
virtual void | Register (vtkObjectBase *o) |
| Increase the reference count (mark as used by another object).
|
|
virtual void | UnRegister (vtkObjectBase *o) |
| Decrease the reference count (release by another object).
|
|
int | GetReferenceCount () |
| Return the current reference count of this object.
|
|
void | SetReferenceCount (int) |
| Sets the reference count.
|
|
bool | GetIsInMemkind () const |
| A local state flag that remembers whether this object lives in the normal or extended memory space.
|
|
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses.
|
|
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses.
|
|
key that can used to request integer values from the pipeline vtkInformationIntegerRequestKey is a vtkInformationIntegerKey that can used to request integer values from upstream.
A good example of this is UPDATE_NUMBER_OF_PIECES where downstream can request that upstream provides data partitioned into a certain number of pieces. There are several components that make this work. First, the key will copy itself upstream during REQUEST_UPDATE_EXTENT. Second, after a successful execution, it will stor its value into a data object's information using a specific key defined by its data member DataKey. Third, before execution, it will check if the requested value matched the value in the data object's information. If not, it will ask the pipeline to execute.
The best way to use this class is to subclass it to set the DataKey data member. This is usually done in the subclass' constructor.
Definition at line 41 of file vtkInformationIntegerRequestKey.h.