-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
296 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ata-dubbo-saga-consumer/src/main/java/org/apache/seata/provider/action/SagaActionOne.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.apache.seata.provider.action; | ||
|
||
import org.apache.seata.rm.tcc.api.BusinessActionContext; | ||
|
||
/** | ||
* @author wangte | ||
* Create At 2024/11/16 | ||
*/ | ||
public interface SagaActionOne { | ||
|
||
boolean prepare(BusinessActionContext actionContext, int a); | ||
|
||
boolean compensation(BusinessActionContext actionContext); | ||
} |
31 changes: 31 additions & 0 deletions
31
...ata-dubbo-saga-consumer/src/main/java/org/apache/seata/provider/action/SagaActionTwo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package org.apache.seata.provider.action; | ||
|
||
import org.apache.seata.rm.tcc.api.BusinessActionContext; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author wangte | ||
* Create At 2024/11/16 | ||
*/ | ||
public interface SagaActionTwo { | ||
|
||
/** | ||
* Prepare boolean. | ||
* | ||
* @param actionContext the action context | ||
* @param b the b | ||
* @param list the list | ||
* @return the boolean | ||
*/ | ||
boolean prepare(BusinessActionContext actionContext, String b, List list); | ||
|
||
/** | ||
* Rollback boolean. | ||
* | ||
* @param actionContext the action context | ||
* @return the boolean | ||
*/ | ||
public boolean rollback(BusinessActionContext actionContext); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...ata-dubbo-saga-provider/src/main/java/org/apache/seata/provider/action/SagaActionOne.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* 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 org.apache.seata.provider.action; | ||
|
||
import org.apache.seata.rm.tcc.api.BusinessActionContext; | ||
|
||
/** | ||
* SagaActionOne | ||
*/ | ||
public interface SagaActionOne { | ||
|
||
boolean prepare(BusinessActionContext actionContext, int a); | ||
|
||
boolean compensation(BusinessActionContext actionContext); | ||
} |
Oops, something went wrong.