소스 검색

add summary comment.

master
Savorboard 7 년 전
부모
커밋
b418aeb5c0
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      src/DotNetCore.CAP/IStorage.cs
  2. +4
    -0
      src/DotNetCore.CAP/IStorageTransaction.cs

+ 6
- 0
src/DotNetCore.CAP/IStorage.cs 파일 보기

@@ -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();
}
}

+ 4
- 0
src/DotNetCore.CAP/IStorageTransaction.cs 파일 보기

@@ -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);


불러오는 중...
취소
저장