Oracle Coherence for C++ API
Release 3.7.1.0

E22845-01

SimpleQueryRecord Class Reference

#include <coherence/util/SimpleQueryRecord.hpp>

Inherits Object, PortableObject, and QueryRecord.

List of all members.


Detailed Description

Simple QueryRecord implementation.

Since:
Coherence 3.7.1
Author:
tb 2011.05.26
 

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.
Returns:
the record type
virtual List::View  getResults () const
  Get the list of partial results for this query record.
Returns:
the list of results
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);
Parameters:
  out  the stream used to output the description

Protected Attributes

enum
QueryRecorder::RecordType 
m_type
  This record type.
MemberHandle< List m_hListResults
  The list of partial results.

Classes

class   PartialResult
  Simple QueryRecord::PartialResult implementation. More...

Constructor & Destructor Documentation

SimpleQueryRecord ( QueryRecorder::RecordType  type,
    Collection::View  vColResults  
  )      

Construct a SimpleQueryRecord from the given collection of partial results.

Parameters:
  type  the record type
  vColResults  the collection of partial results

Member Function Documentation

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.

Parameters:
  vColResults  the collection of partial results

The documentation for this class was generated from the following file:

Copyright © 2000, 2011, Oracle and/or its affiliates. All rights reserved.