#include <coherence/util/SimpleQueryRecord.hpp>
Inherits Object, PortableObject, and QueryRecord.
Public Types | ||||
| typedef spec::Handle | Handle | |||
| SimpleQueryRecord Handle definition. | ||||
| typedef spec::View | View | |||
| SimpleQueryRecord View definition. | ||||
| typedef spec::Holder | Holder | |||
| SimpleQueryRecord Holder definition. | ||||
Public Member Functions | ||||
| SimpleQueryRecord () | ||||
| Construct a SimpleQueryRecord. | ||||
| SimpleQueryRecord (QueryRecorder::RecordType type, Collection::View vColResults) | ||||
| Construct a SimpleQueryRecord from the given collection of partial results. | ||||
|
virtual QueryRecorder::RecordType | getType () const | |||
| Get the type that was specified when this query record was created.
| ||||
| virtual List::View | getResults () const | |||
| Get the list of partial results for this query record.
| ||||
| virtual void | mergeResults (Collection::View vColResults) | |||
| Merge the partial results from the associated record. | ||||
| 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 Attributes | ||||
|
enum QueryRecorder::RecordType | m_type | |||
| This record type. | ||||
| FinalHandle< List > | f_hListResults | |||
| The list of partial results. | ||||
Classes | ||||
| class | PartialResult | |||
| Simple QueryRecord::PartialResult implementation. More... | ||||
| SimpleQueryRecord | ( | QueryRecorder::RecordType | type, | |
| Collection::View | vColResults | |||
| ) |
Construct a SimpleQueryRecord from the given collection of partial results.
| type | the record type | |
| vColResults | the collection of partial results |
| virtual void mergeResults | ( | Collection::View | vColResults | ) | [virtual] |
Merge the partial results from the associated record.
Matching partial results are merged into a single result for the report.
| vColResults | the collection of partial results |