Hazelcast C++ Client
 All Classes Functions Variables Enumerations Enumerator Pages
DataArray.h
1 /*
2  * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 //
17 // Created by ihsan demir on 25 02, 2016.
18 //
19 #ifndef HAZELCAST_CLIENT_DATAARRAY_H_
20 #define HAZELCAST_CLIENT_DATAARRAY_H_
21 
22 #include <vector>
23 
24 #include "hazelcast/util/Util.h"
25 #include "hazelcast/client/exception/IllegalArgumentException.h"
26 #include "hazelcast/util/Comparator.h"
27 #include "hazelcast/client/serialization/pimpl/SerializationService.h"
28 #include "EntryArray.h"
29 
30 namespace hazelcast {
31  namespace client {
32  template<typename T>
33  class DataArray {
34  public:
35  virtual ~DataArray() { }
36 
40  virtual size_t size() const = 0;
41 
50  virtual const T *get(size_t index) = 0;
51 
59  virtual std::auto_ptr<T> release(size_t index) = 0;
60 
69  virtual const T* operator[](size_t index) = 0;
70  };
71  }
72 }
73 
74 #endif //HAZELCAST_CLIENT_DATAARRAY_H_
75 
virtual const T * operator[](size_t index)=0
Please note that this operation MAY (if the de-serialization is not done before) be costly due to de-...
virtual size_t size() const =0
Definition: DataArray.h:33
virtual std::auto_ptr< T > release(size_t index)=0
Will release the de-serialized data.