1
0
mirror of synced 2024-09-28 19:56:09 +00:00

Merge branch 'hotfix/2.2.2' into develop

This commit is contained in:
Mark van Renswoude 2020-07-02 11:43:37 +02:00
commit b69ac7311b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ namespace Tapeti.Config
/// <summary> /// <summary>
/// Denotes middleware that runs after controller methods. /// Denotes middleware that runs after controller methods.
/// </summary> /// </summary>
public interface IControllerCleanupMiddleware public interface IControllerCleanupMiddleware : IControllerMiddlewareBase
{ {
/// <summary> /// <summary>
/// Called after the message handler method, even if exceptions occured. /// Called after the message handler method, even if exceptions occured.

View File

@ -6,7 +6,7 @@ namespace Tapeti.Config
/// <summary> /// <summary>
/// Denotes middleware that runs for controller methods. /// Denotes middleware that runs for controller methods.
/// </summary> /// </summary>
public interface IControllerMessageMiddleware public interface IControllerMessageMiddleware : IControllerMiddlewareBase
{ {
/// <summary> /// <summary>
/// Called after the message has passed any filter middleware and the controller has been instantiated, /// Called after the message has passed any filter middleware and the controller has been instantiated,