VMware GemFire Native Client Cache Reference  9.0.6
ResultSet.hpp
Go to the documentation of this file.
1 #ifndef __GEMFIRE_RESULTSET_H__
2 #define __GEMFIRE_RESULTSET_H__
3 /*=========================================================================
4  * Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
5  * This product is protected by U.S. and international copyright
6  * and intellectual property laws. Pivotal products are covered by
7  * more patents listed at http://www.pivotal.io/patents.
8  *========================================================================
9  */
10 
11 #include "gfcpp_globals.hpp"
12 #include "gf_types.hpp"
13 #include "ExceptionTypes.hpp"
14 
15 #include "SelectResults.hpp"
16 #include "VectorT.hpp"
17 
19 
24 namespace gemfire
25 {
26 
33 {
34 
35 public:
36 
42  virtual bool isModifiable() const = 0;
43 
49  virtual int32_t size() const = 0;
50 
58  virtual const SerializablePtr operator [] (int32_t index) const = 0;
59 
65  virtual SelectResultsIterator getIterator() = 0;
66 
70  virtual ~ResultSet() {};
71 
72 };
73 
74 } //namespace gemfire
75 
76 #endif //ifndef __GEMFIRE_RESULTSET_H__
A SelectResults is obtained by executing a Query on the server.
Definition: SelectResults.hpp:31
A SelectResultsIterator is obtained from a ResultSet or StructSet and is used to iterate over the ite...
Definition: SelectResultsIterator.hpp:34
This namespace contains all the GemFire C++ API classes, enumerations and globals.
Definition: Assert.hpp:19
#define CPPCACHE_EXPORT
Defines a GemFire CPPCACHE export.
Definition: gf_base.hpp:51
A ResultSet may be obtained after executing a Query which is obtained from a QueryService which in tu...
Definition: ResultSet.hpp:32
virtual ~ResultSet()
Destructor.
Definition: ResultSet.hpp:70
Defines a reference counted shared pointer.
Definition: SharedPtr.hpp:35

GemFire C++ Cache API Documentation