tabbing
[iotcloud.git] / version2 / src / C / PendingTransaction.h
index 7e60ce865a25adcefebaf34fba9f5df73cfdff83..e919ca80f3aa3977baf6facd07a230bedb5c3e9f 100644 (file)
@@ -4,15 +4,15 @@
 #include "common.h"
 
 class PendingTransaction {
- private:
-       Hashset<KeyValue*> * keyValueUpdateSet = NULL;
-       Hashset<KeyValue*> * keyValueGuardSet = NULL;
+private:
+       Hashset<KeyValue *> *keyValueUpdateSet = NULL;
+       Hashset<KeyValue *> *keyValueGuardSet = NULL;
        int64_t arbitrator = -1;
        int64_t clientLocalSequenceNumber = -1;
-  int64_t machineId = -1;
+       int64_t machineId = -1;
        int32_T currentDataSize = 0;
 
- public:
+public:
        PendingTransaction(int64_t _machineId);
        /**
         * Add a new key value to the updates
@@ -35,12 +35,12 @@ class PendingTransaction {
        /**
         * Get the key value update set
         */
-       Hashset<KeyValue*> * getKVUpdates() { return keyValueUpdateSet; }
+       Hashset<KeyValue *> *getKVUpdates() { return keyValueUpdateSet; }
 
        /**
         * Get the key value update set
         */
-       public Hashset<KeyValue *> * getKVGuard() { return keyValueGuardSet; }
+       public Hashset<KeyValue *> *getKVGuard() { return keyValueGuardSet; }
 
        void setClientLocalSequenceNumber(int64_t _clientLocalSequenceNumber) { clientLocalSequenceNumber = _clientLocalSequenceNumber; }
 
@@ -50,8 +50,8 @@ class PendingTransaction {
 
        bool evaluateGuard(Hashtable<IoTString *, KeyValue *> keyValTableCommitted, Hashtable<IoTString *, KeyValue *> keyValTableSpeculative, Hashtable<IoTString *, KeyValue *> keyValTablePendingTransSpeculative);
 
-       Transaction * createTransaction();
+       Transaction *createTransaction();
 
-       Array<char> * convertDataToBytes();
+       Array<char> *convertDataToBytes();
 };
 #endif