Commit b418aeb5 authored by Savorboard's avatar Savorboard

add summary comment.

parent c328c2d1
......@@ -14,8 +14,14 @@ namespace DotNetCore.CAP
/// </summary>
Task InitializeAsync(CancellationToken cancellationToken);
/// <summary>
/// Provider the dashboard metric api.
/// </summary>
IMonitoringApi GetMonitoringApi();
/// <summary>
/// Storage connection of database operate.
/// </summary>
IStorageConnection GetConnection();
}
}
\ No newline at end of file
......@@ -4,6 +4,10 @@ using DotNetCore.CAP.Models;
namespace DotNetCore.CAP
{
/// <summary>
/// A transactional database storage operation.
/// Update message state of the message table with transactional.
/// </summary>
public interface IStorageTransaction : IDisposable
{
void UpdateMessage(CapPublishedMessage message);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment