Oracle Coherence for C++ API
Release 3.7.1.0
E22845-01
#include <coherence/util/processor/ConditionalProcessor.hpp>
Inherits AbstractProcessor, and PortableObject.
Conditional entry processor represents a processor that is invoked conditionally based on the result of an entry evaluation.
Public Types |
||||
| typedef spec::Handle | Handle | |||
| ConditionalProcessor Handle definition. | ||||
| typedef spec::View | View | |||
| ConditionalProcessor View definition. | ||||
| typedef spec::Holder | Holder | |||
| ConditionalProcessor Holder definition. | ||||
Public Member Functions |
||||
| virtual Object::Holder | process (InvocableMap::Entry::Handle hEntry) const | |||
Process a Map::Entry object.
|
||||
| virtual Map::View | processAll (Set::View vsetEntries) const | |||
| Process a Set of InvocableMap::Entry objects.
This method is semantically equivalent to: Map::Handle hMapResults = HashMap::create(); for (Iterator::Handle hIter = vSetEntries->iterator(); iter->hasNext; ) { InvocableMap::Entry::Handle hEntry = cast<InvocableMap::Entry::Handle>(hIter->next()); hMapResults->put(hEntry->getKey(), process(hEntry)); } return hMapResults;
|
||||
| virtual void | readExternal (PofReader::Handle hIn) | |||
| virtual void | writeExternal (PofWriter::Handle hOut) const | |||
| virtual bool | equals (Object::View v) const | |||
| virtual size32_t | hashCode () const | |||
| Return a hash code value for the Object.
This method is supported for the benefit of hash-based containers. The general contract of
The default implementation is identity based.
|
||||
Protected Member Functions |
||||
| ConditionalProcessor () | ||||
| Construct a ConditionalProcessor. | ||||
| ConditionalProcessor (Filter::View vFilter, InvocableMap::EntryProcessor::View vProcessor) | ||||
| Construct a ConditionalProcessor for the specified filter and the processor. | ||||
Protected Attributes |
||||
| MemberView< Filter > | m_vFilter | |||
| The underlying filter. | ||||
| MemberView < InvocableMap::EntryProcessor > |
m_vProcessor | |||
| The underlying entry processor. | ||||
| ConditionalProcessor | ( | Filter::View | vFilter, | |
| InvocableMap::EntryProcessor::View | vProcessor | |||
| ) | [protected] |
Construct a ConditionalProcessor for the specified filter and the processor.
The specified entry processor gets invoked if and only if the filter applied to the InvocableMap entry evaluates to true; otherwise the result of the process invocation will return NULL.
The documentation for this class was generated from the following file: