6bc6cfe216
MAX-1081 POC Dictionary tasks in Web voor request Setup voor Transient request response met TODO's
14 lines
315 B
C#
14 lines
315 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Tapeti.Config;
|
|
|
|
namespace Tapeti.Tests
|
|
{
|
|
public class TransientFilterMiddleware : IMessageFilterMiddleware
|
|
{
|
|
public Task Handle(IMessageContext context, Func<Task> next)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |