Hazelcast C++ Client
 All Classes Functions Variables Enumerations Enumerator Pages
Portable.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 sancar koyunlu on 6/28/13.
18 
19 
20 
21 
22 #ifndef HAZELCAST_Portable
23 #define HAZELCAST_Portable
24 
25 #include "hazelcast/util/HazelcastDll.h"
26 
27 namespace hazelcast {
28  namespace client {
29  namespace serialization {
30  class PortableWriter;
31 
32  class PortableReader;
33 
52  class HAZELCAST_API Portable {
53  public:
57  virtual ~Portable(){
58 
59  }
60 
64  virtual int getFactoryId() const = 0;
65 
69  virtual int getClassId() const = 0;
70 
75  virtual void writePortable(PortableWriter& writer) const = 0;
76 
81  virtual void readPortable(PortableReader& reader) = 0;
82 
83  };
84  }
85  }
86 
87 
88 }
89 
90 
91 #endif //HAZELCAST_Portable
92 
Provides a mean of reading portable fields from a binary in form of java primitives arrays of java pr...
Definition: PortableReader.h:52
virtual ~Portable()
Destructor.
Definition: Portable.h:57
Provides a mean of writing portable fields to a binary in form of java primitives arrays of java prim...
Definition: PortableWriter.h:42
Classes that will be used with hazelcast data structures like IMap, IQueue etc should either inherit ...
Definition: Portable.h:52