FETPAPI 0.3.0.0
This project provides C++ classes which facilitate the developement of ETP1.2 clients and servers.
All Classes Namespaces Functions Variables Pages
TransactionHandlers.h
1/*-----------------------------------------------------------------------
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"; you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-----------------------------------------------------------------------*/
19#pragma once
20
21#include "ProtocolHandlers.h"
22
23namespace ETP_NS
24{
32 class FETPAPI_DLL_IMPORT_OR_EXPORT TransactionHandlers : public ProtocolHandlers
33 {
34 public:
36 virtual ~TransactionHandlers() = default;
37
38 void decodeMessageBody(const Energistics::Etp::v12::Datatypes::MessageHeader & mh, avro::DecoderPtr d);
39
40 virtual void on_StartTransaction(const Energistics::Etp::v12::Protocol::Transaction::StartTransaction & msg, int64_t correlationId);
41 virtual void on_StartTransactionResponse(const Energistics::Etp::v12::Protocol::Transaction::StartTransactionResponse & msg, int64_t correlationId);
42 virtual void on_CommitTransaction(const Energistics::Etp::v12::Protocol::Transaction::CommitTransaction & msg, int64_t correlationId);
43 virtual void on_CommitTransactionResponse(const Energistics::Etp::v12::Protocol::Transaction::CommitTransactionResponse & msg, int64_t correlationId);
44 virtual void on_RollbackTransaction(const Energistics::Etp::v12::Protocol::Transaction::RollbackTransaction & msg, int64_t correlationId);
45 virtual void on_RollbackTransactionResponse(const Energistics::Etp::v12::Protocol::Transaction::RollbackTransactionResponse & msg, int64_t correlationId);
46
47 bool isInAnActiveTransaction() const {
48 return std::find_if(transactionUuid.array.begin(), transactionUuid.array.end(), [](uint8_t item) {return item != 0; }) != transactionUuid.array.end();
49 }
50 const Energistics::Etp::v12::Datatypes::Uuid& getTransactionUuid() const { return transactionUuid; }
51 const std::string& getLastTransactionFailure() const { return lastTransactionFailure; }
52 private:
55 std::string lastTransactionFailure;
56 };
57}
Definition AbstractSession.h:51
Definition ProtocolHandlers.h:43
Definition TransactionHandlers.h:33
Definition EtpMessages.h:1949