Browse Source

add webhook support.

master
yangxiaodong 7 years ago
parent
commit
0c9029404d
2 changed files with 22 additions and 0 deletions
  1. +12
    -0
      src/DotNetCore.CAP/CAP.Options.cs
  2. +10
    -0
      src/DotNetCore.CAP/Infrastructure/WebHookProvider.cs

+ 12
- 0
src/DotNetCore.CAP/CAP.Options.cs View File

@@ -26,6 +26,11 @@ namespace DotNetCore.CAP
/// </summary>
public int PollingDelay { get; set; } = 8;

/// <summary>
/// We’ll send a POST request to the URL below with details of any subscribed events.
/// </summary>
public WebHook WebHook { get; set; }

/// <summary>
/// Registers an extension that will be executed when building services.
/// </summary>
@@ -38,4 +43,11 @@ namespace DotNetCore.CAP
Extensions.Add(extension);
}
}

public class WebHook
{
public string PayloadUrl { get; set; }

public string Secret { get; set; }
}
}

+ 10
- 0
src/DotNetCore.CAP/Infrastructure/WebHookProvider.cs View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace DotNetCore.CAP.Infrastructure
{
class WebHookProvider
{
}
}

Loading…
Cancel
Save