Oracle Coherence for C++ API
Release 3.7.1.0
E22845-01
#include <coherence/util/processor/PriorityProcessor.hpp>
Inherits AbstractPriorityTask, InvocableMap::EntryProcessor, and PortableObject.
PriorityProcessor is used to explicitly control the scheduling priority and timeouts for execution of EntryProcessor-based methods.
Public Types |
||||
| typedef spec::Handle | Handle | |||
| PriorityProcessor Handle definition. | ||||
| typedef spec::View | View | |||
| PriorityProcessor View definition. | ||||
| typedef spec::Holder | Holder | |||
| PriorityProcessor 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 InvocableMap::EntryProcessor::View |
getProcessor () const | |||
| Obtain the underlying processor. | ||||
| virtual void | readExternal (PofReader::Handle hIn) | |||
| virtual void | writeExternal (PofWriter::Handle hOut) const | |||
| virtual void | toStream (std::ostream &out) const | |||
| Output a human-readable description of this Object to the given stream.
coherence::lang::operator<<(std::ostream, Object::View) is defined and will call into the toStream method, to output Objects. If a managed String object is desired, the COH_TO_STRING macro can be used to build up a String from streamable contents. Object::View vKey = ... Object::View vValue = ... std::cout << vKey << " = " << vValue << std::endl; String::Handle hs = COH_TO_STRING(vKey << " = " << vValue);
|
||||
Protected Member Functions |
||||
| PriorityProcessor () | ||||
| Construct a PriorityProcessor. | ||||
| PriorityProcessor (InvocableMap::EntryProcessor::View vProcessor) | ||||
| Construct a PriorityProcessor. | ||||
Protected Attributes |
||||
| MemberView < InvocableMap::EntryProcessor > |
m_vProcessor | |||
| The underlying entry processor. | ||||
| PriorityProcessor | ( | ) | [protected] |
Construct a PriorityProcessor.
| PriorityProcessor | ( | InvocableMap::EntryProcessor::View | vProcessor | ) | [protected] |
Construct a PriorityProcessor.
| processor | the processor wrapped by this PriorityProcessor |
| virtual InvocableMap::EntryProcessor::View getProcessor | ( | ) | const [virtual] |
Obtain the underlying processor.
The documentation for this class was generated from the following file: