|
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- package message
-
- import (
- "time"
-
- model2 "seata.apache.org/seata-go/pkg/protocol/branch"
- )
-
- type AbstractBranchEndRequest struct {
- MessageTypeAware
- Xid string
- BranchId int64
- BranchType model2.BranchType
- ResourceId string
- ApplicationData []byte
- }
-
- type AbstractGlobalEndRequest struct {
- Xid string
- ExtraData []byte
- }
-
- type BranchRegisterRequest struct {
- Xid string
- BranchType model2.BranchType
- ResourceId string
- LockKey string
- ApplicationData []byte
- }
-
- func (req BranchRegisterRequest) GetTypeCode() MessageType {
- return MessageTypeBranchRegister
- }
-
- type BranchReportRequest struct {
- Xid string
- BranchId int64
- ResourceId string
- Status model2.BranchStatus
- ApplicationData []byte
- BranchType model2.BranchType
- }
-
- func (req BranchReportRequest) GetTypeCode() MessageType {
- return MessageTypeBranchStatusReport
- }
-
- type BranchCommitRequest struct {
- AbstractBranchEndRequest
- }
-
- func (req BranchCommitRequest) GetTypeCode() MessageType {
- return MessageTypeBranchCommit
- }
-
- type BranchRollbackRequest struct {
- AbstractBranchEndRequest
- }
-
- func (req BranchRollbackRequest) GetTypeCode() MessageType {
- return MessageTypeBranchRollback
- }
-
- type GlobalBeginRequest struct {
- Timeout time.Duration
- TransactionName string
- }
-
- func (req GlobalBeginRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalBegin
- }
-
- type GlobalStatusRequest struct {
- AbstractGlobalEndRequest
- }
-
- func (req GlobalStatusRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalStatus
- }
-
- type GlobalLockQueryRequest struct {
- BranchRegisterRequest
- }
-
- func (req GlobalLockQueryRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalLockQuery
- }
-
- type GlobalReportRequest struct {
- AbstractGlobalEndRequest
-
- GlobalStatus GlobalStatus
- }
-
- func (req GlobalReportRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalReport
- }
-
- type GlobalCommitRequest struct {
- AbstractGlobalEndRequest
- }
-
- func (req GlobalCommitRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalCommit
- }
-
- type GlobalRollbackRequest struct {
- AbstractGlobalEndRequest
- }
-
- func (req GlobalRollbackRequest) GetTypeCode() MessageType {
- return MessageTypeGlobalRollback
- }
-
- type UndoLogDeleteRequest struct {
- ResourceId string
- SaveDays MessageType
- BranchType model2.BranchType
- }
-
- func (req UndoLogDeleteRequest) GetTypeCode() MessageType {
- return MessageTypeRmDeleteUndolog
- }
-
- type RegisterTMRequest struct {
- AbstractIdentifyRequest
- }
-
- func (req RegisterTMRequest) GetTypeCode() MessageType {
- return MessageTypeRegClt
- }
-
- type RegisterRMRequest struct {
- AbstractIdentifyRequest
- ResourceIds string
- }
-
- func (req RegisterRMRequest) GetTypeCode() MessageType {
- return MessageTypeRegRm
- }
|