Fixed controller middleware interfaces not inheriting from base
This commit is contained in:
parent
021d9746e2
commit
e5882b7b7a
@ -6,7 +6,7 @@ namespace Tapeti.Config
|
||||
/// <summary>
|
||||
/// Denotes middleware that runs after controller methods.
|
||||
/// </summary>
|
||||
public interface IControllerCleanupMiddleware
|
||||
public interface IControllerCleanupMiddleware : IControllerMiddlewareBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Called after the message handler method, even if exceptions occured.
|
||||
|
@ -6,7 +6,7 @@ namespace Tapeti.Config
|
||||
/// <summary>
|
||||
/// Denotes middleware that runs for controller methods.
|
||||
/// </summary>
|
||||
public interface IControllerMessageMiddleware
|
||||
public interface IControllerMessageMiddleware : IControllerMiddlewareBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Called after the message has passed any filter middleware and the controller has been instantiated,
|
||||
|
Loading…
Reference in New Issue
Block a user