소스 검색

Abstract base class for ISubscribeFilter (#911)

master
EMRE TEOMAN 3 년 전
committed by GitHub
부모
커밋
67efbe1563
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일36개의 추가작업 그리고 0개의 파일을 삭제
  1. +36
    -0
      src/DotNetCore.CAP/Internal/Filter/SubscribeFilter.cs

+ 36
- 0
src/DotNetCore.CAP/Internal/Filter/SubscribeFilter.cs 파일 보기

@@ -0,0 +1,36 @@
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

// ReSharper disable once CheckNamespace
namespace DotNetCore.CAP.Filter
{
/// <summary>
/// Abstract base class for ISubscribeFilter for use when implementing a subset of the interface methods.
/// </summary>
public abstract class SubscribeFilter : ISubscribeFilter
{
/// <summary>
/// Called before the subscriber executes.
/// </summary>
/// <param name="context">The <see cref="ExecutingContext"/>.</param>
public virtual void OnSubscribeExecuting(ExecutingContext context)
{
}

/// <summary>
/// Called after the subscriber executes.
/// </summary>
/// <param name="context">The <see cref="ExecutedContext"/>.</param>
public virtual void OnSubscribeExecuted(ExecutedContext context)
{
}

/// <summary>
/// Called after the subscriber has thrown an <see cref="System.Exception"/>.
/// </summary>
/// <param name="context">The <see cref="ExceptionContext"/>.</param>
public virtual void OnSubscribeException(ExceptionContext context)
{
}
}
}

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