Browse Source

Add summary docs

master
Savorboard 2 years ago
parent
commit
9212c70081
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      src/DotNetCore.CAP/ICapTransaction.cs

+ 7
- 1
src/DotNetCore.CAP/ICapTransaction.cs View File

@@ -27,13 +27,19 @@ namespace DotNetCore.CAP
/// </summary> /// </summary>
void Commit(); void Commit();


/// <summary>
/// Submit the transaction context of the CAP, we will send the message to the message queue at the time of submission
/// </summary>
Task CommitAsync(CancellationToken cancellationToken = default); Task CommitAsync(CancellationToken cancellationToken = default);


/// <summary> /// <summary>
/// We will delete the message data that has not been sstore in the buffer data of current transaction context.
/// We will delete the message data that has not been store in the buffer data of current transaction context.
/// </summary> /// </summary>
void Rollback(); void Rollback();


/// <summary>
/// We will delete the message data that has not been store in the buffer data of current transaction context.
/// </summary>
Task RollbackAsync(CancellationToken cancellationToken = default); Task RollbackAsync(CancellationToken cancellationToken = default);
} }
} }

Loading…
Cancel
Save