소스 검색

add webhook support.

master
yangxiaodong 7 년 전
부모
커밋
0c9029404d
2개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  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 파일 보기

@@ -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 파일 보기

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

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

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