-
Notifications
You must be signed in to change notification settings - Fork 156
Transaction#commit
and Transaction#rollback
#622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -45,12 +45,6 @@ private enum State | |
/** The transaction is running with no explicit success or failure marked */ | ||
ACTIVE, | ||
|
||
/** Running, user marked for success, meaning it'll value committed */ | ||
MARKED_SUCCESS, | ||
|
||
/** User marked as failed, meaning it'll be rolled back. */ | ||
MARKED_FAILED, | ||
|
||
/** | ||
* This transaction has been terminated either because of explicit {@link Session#reset()} or because of a | ||
* fatal connection error. | ||
|
@@ -94,29 +88,9 @@ public CompletionStage<ExplicitTransaction> beginAsync( InternalBookmark initial | |
} ); | ||
} | ||
|
||
public void success() | ||
{ | ||
if ( state == State.ACTIVE ) | ||
{ | ||
state = State.MARKED_SUCCESS; | ||
} | ||
} | ||
|
||
public void failure() | ||
{ | ||
if ( state == State.ACTIVE || state == State.MARKED_SUCCESS ) | ||
{ | ||
state = State.MARKED_FAILED; | ||
} | ||
} | ||
|
||
public CompletionStage<Void> closeAsync() | ||
{ | ||
if ( state == State.MARKED_SUCCESS ) | ||
{ | ||
return commitAsync(); | ||
} | ||
else if ( state != State.COMMITTED && state != State.ROLLED_BACK ) | ||
if ( isOpen() ) | ||
{ | ||
return rollbackAsync(); | ||
} | ||
|
@@ -130,7 +104,7 @@ public CompletionStage<Void> commitAsync() | |
{ | ||
if ( state == State.COMMITTED ) | ||
{ | ||
return completedWithNull(); | ||
return failedFuture( new ClientException( "Can't commit, transaction has been committed" ) ); | ||
} | ||
else if ( state == State.ROLLED_BACK ) | ||
{ | ||
|
@@ -152,7 +126,7 @@ public CompletionStage<Void> rollbackAsync() | |
} | ||
else if ( state == State.ROLLED_BACK ) | ||
{ | ||
return completedWithNull(); | ||
return failedFuture( new ClientException( "Can't rollback, transaction has been rolled back" ) ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, and also the following (unchanged) messages with regards to standardisation, |
||
} | ||
else | ||
{ | ||
|
@@ -205,11 +179,6 @@ else if ( state == State.ROLLED_BACK ) | |
{ | ||
throw new ClientException( "Cannot run more statements in this transaction, it has been rolled back" ); | ||
} | ||
else if ( state == State.MARKED_FAILED ) | ||
{ | ||
throw new ClientException( "Cannot run more statements in this transaction, it has been marked for failure. " + | ||
"Please either rollback or close this transaction" ); | ||
} | ||
else if ( state == State.TERMINATED ) | ||
{ | ||
throw new ClientException( "Cannot run more statements in this transaction, " + | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm definitely not an English guru, but I would find
Can't commit, because transaction has already been committed.
more descriptive. And it would be nice if we could standardise the error messages like using alwaysCan't
orCannot
in the same context.