VMware GemFire Native C++ Reference  9.1
apache::geode::client::StructSet Class Referenceabstract

A StructSet may be obtained after executing a Query which is obtained from a QueryService which in turn is obtained from a Cache. More...

Inherits apache::geode::client::CqResults.

Public Types

typedef CacheableVector::Iterator Iterator
 Interface of an iterator for SelectResults. More...
 

Public Member Functions

virtual Iterator begin () const =0
 Get an iterator pointing to the start of vector. More...
 
virtual Iterator end () const =0
 Get an iterator pointing to the end of vector. More...
 
virtual int32_t getFieldIndex (const char *fieldname)=0
 Get the index number of the specified field name in the StructSet. More...
 
virtual const char * getFieldName (int32_t index)=0
 Get the field name of the StructSet from the specified index number. More...
 
virtual SelectResultsIterator getIterator ()=0
 Get a SelectResultsIterator with which to iterate over the items in the StructSet. More...
 
virtual bool isModifiable () const =0
 Check whether the StructSet is modifiable. More...
 
virtual const SerializablePtr operator[] (int32_t index) const =0
 Index operator to directly access an item in the StructSet. More...
 
void preserveSB () const
 Atomically increment reference count. More...
 
int32_t refCount ()
 
void releaseSB () const
 Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero. More...
 
virtual int32_t size () const =0
 Get the size of the StructSet. More...
 
virtual ~StructSet ()
 Destructor. More...
 

Detailed Description

A StructSet may be obtained after executing a Query which is obtained from a QueryService which in turn is obtained from a Cache.

It is the parent of a Struct which contains the field values.

Member Typedef Documentation

Constructor & Destructor Documentation

virtual apache::geode::client::StructSet::~StructSet ( )
inlinevirtual

Destructor.

Member Function Documentation

virtual Iterator apache::geode::client::SelectResults::begin ( ) const
pure virtualinherited

Get an iterator pointing to the start of vector.

virtual Iterator apache::geode::client::SelectResults::end ( ) const
pure virtualinherited

Get an iterator pointing to the end of vector.

virtual int32_t apache::geode::client::StructSet::getFieldIndex ( const char *  fieldname)
pure virtual

Get the index number of the specified field name in the StructSet.

Parameters
fieldnamethe field name for which the index is required.
Returns
the index number of the specified field name.
Exceptions
IllegalArgumentExceptionif the field name is not found.
virtual const char* apache::geode::client::StructSet::getFieldName ( int32_t  index)
pure virtual

Get the field name of the StructSet from the specified index number.

Parameters
indexthe index number of the field name to get.
Returns
the field name from the specified index number or NULL if not found.
virtual SelectResultsIterator apache::geode::client::StructSet::getIterator ( )
pure virtual

Get a SelectResultsIterator with which to iterate over the items in the StructSet.

Returns
The SelectResultsIterator with which to iterate.

Implements apache::geode::client::SelectResults.

virtual bool apache::geode::client::StructSet::isModifiable ( ) const
pure virtual

Check whether the StructSet is modifiable.

Returns
false always at this time.

Implements apache::geode::client::SelectResults.

virtual const SerializablePtr apache::geode::client::StructSet::operator[] ( int32_t  index) const
pure virtual

Index operator to directly access an item in the StructSet.

Parameters
indexthe index number of the item to get.
Exceptions
IllegalArgumentExceptionif the index is out of bounds.
Returns
A smart pointer to the item indexed.

Implements apache::geode::client::SelectResults.

void apache::geode::client::SharedBase::preserveSB ( ) const
inherited

Atomically increment reference count.

int32_t apache::geode::client::SharedBase::refCount ( )
inlineinherited
Returns
the reference count
void apache::geode::client::SharedBase::releaseSB ( ) const
inherited

Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero.

virtual int32_t apache::geode::client::StructSet::size ( ) const
pure virtual

Get the size of the StructSet.

Returns
the number of items in the StructSet.

Implements apache::geode::client::SelectResults.


Pivotal GemFire C++ Cache API Documentation