diff options
| author | Alan Conway <aconway@apache.org> | 2013-08-01 20:27:39 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2013-08-01 20:27:39 +0000 |
| commit | 09ba98e9af327f339de442512a288190893f2c92 (patch) | |
| tree | 82738a1e51cbf888eab5c497bd2fa1317a32515a /qpid/cpp/include | |
| parent | 014f0f39d9cfb6242bea173eadbc0f8229ba5f7f (diff) | |
| download | qpid-python-09ba98e9af327f339de442512a288190893f2c92.tar.gz | |
QPID-4327: HA TX transactions, blocking wait for prepare
Backups send prepare messages to primary, primary delays completion of prepare
till all are prepared (or there is a failure).
This is NOT the production solution - blocking could cause a deadlock. We need
to introduce asynchronous completion of prepare without blocking. This
interim solution allows testing on other aspects of TX support.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/types/Uuid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/include/qpid/types/Uuid.h b/qpid/cpp/include/qpid/types/Uuid.h index 43ec160ab3..b931670d97 100644 --- a/qpid/cpp/include/qpid/types/Uuid.h +++ b/qpid/cpp/include/qpid/types/Uuid.h @@ -42,6 +42,7 @@ class QPID_TYPES_CLASS_EXTERN Uuid QPID_TYPES_EXTERN Uuid& operator=(const Uuid&); /** Copy the UUID from data16, which must point to a 16-byte UUID */ QPID_TYPES_EXTERN Uuid(const unsigned char* data16); + QPID_TYPES_EXTERN Uuid(const char* data16); /** Set to a new unique identifier. */ QPID_TYPES_EXTERN void generate(); |
