-
Notifications
You must be signed in to change notification settings - Fork 627
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-1362: Enable Capture of Tx Synchronization Fail
Resolves #1362 **cherry-pick to 2.3.x** * Add missing doc changes. * Fix test to reset flag.
- Loading branch information
1 parent
10929b7
commit 032f8ec
Showing
4 changed files
with
116 additions
and
2 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
.../main/java/org/springframework/amqp/rabbit/connection/AfterCompletionFailedException.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,52 @@ | ||
/* | ||
* Copyright 2021 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.amqp.rabbit.connection; | ||
|
||
import org.springframework.amqp.AmqpException; | ||
|
||
/** | ||
* Represents a failure to commit or rollback when performing afterCompletion | ||
* after the primary transaction completes. | ||
* | ||
* @author Gary Russell | ||
* @since 2.4 | ||
*/ | ||
public class AfterCompletionFailedException extends AmqpException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final int syncStatus; | ||
|
||
/** | ||
* Construct an instance with the provided properties. | ||
* @param syncStatus the synchronization status. | ||
* @param cause the cause. | ||
*/ | ||
public AfterCompletionFailedException(int syncStatus, Throwable cause) { | ||
super(cause); | ||
this.syncStatus = syncStatus; | ||
} | ||
|
||
/** | ||
* Return the synchronization status. | ||
* @return the status. | ||
*/ | ||
public int getSyncStatus() { | ||
return this.syncStatus; | ||
} | ||
|
||
} |
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