Full removal of SourceGen Meditor. Will revisit in good time.

This commit is contained in:
Daniel Clark
2022-12-17 20:27:52 +00:00
parent 0017aab4b7
commit 369e359622
49 changed files with 134 additions and 108 deletions
@@ -0,0 +1,10 @@
namespace Toolkit.Framework.Foundation;
public interface IPipelineBehavior<TMessage, TResponse> where TMessage : notnull, IMessage
{
ValueTask<TResponse> Handle(
TMessage message,
CancellationToken cancellationToken,
MessageHandlerDelegate<TMessage, TResponse> next
);
}