Commit 3f7d9e12 authored by Savorboard's avatar Savorboard

add summary comment.

parent 59e36836
...@@ -3,8 +3,14 @@ using DotNetCore.CAP.Models; ...@@ -3,8 +3,14 @@ using DotNetCore.CAP.Models;
namespace DotNetCore.CAP namespace DotNetCore.CAP
{ {
/// <summary>
/// A callback that is sent to Productor after a successful consumer execution
/// </summary>
public interface ICallbackPublisher public interface ICallbackPublisher
{ {
/// <summary>
/// Publish a callback message
/// </summary>
Task PublishAsync(CapPublishedMessage obj); Task PublishAsync(CapPublishedMessage obj);
} }
} }
\ No newline at end of file
...@@ -6,7 +6,7 @@ namespace DotNetCore.CAP ...@@ -6,7 +6,7 @@ namespace DotNetCore.CAP
{ {
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// consumer client /// Message queue consumer client
/// </summary> /// </summary>
public interface IConsumerClient : IDisposable public interface IConsumerClient : IDisposable
{ {
......
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