Explorar el Código

Abstract base class for ISubscribeFilter (#911)

master
EMRE TEOMAN hace 3 años
committed by GitHub
padre
commit
67efbe1563
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 36 adiciones y 0 borrados
  1. +36
    -0
      src/DotNetCore.CAP/Internal/Filter/SubscribeFilter.cs

+ 36
- 0
src/DotNetCore.CAP/Internal/Filter/SubscribeFilter.cs Ver fichero

@@ -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)
{
}
}
}

Cargando…
Cancelar
Guardar