Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 // Definition of enumerator used to record CTransactor state.
20 // Must ensure the mode enums here match CRepository::TTransactionMode
21 enum TTransactionState
27 EReadTransaction = EReadBit, // pessimistic, locking
28 EConcurrentReadWriteTransaction = EWriteBit, // optimistic, non-serialised
29 EReadWriteTransaction = EReadBit | EWriteBit, // pessimistic, locking
30 // must ensure all bits used to represent transaction mode are set in
31 // EAllTransactionModeBits otherwise TransactionMode method will not be correct
32 EAllTransactionModeBits = EReadBit | EWriteBit
35 #endif // TRANSSTATE_H