1
0
mirror of synced 2024-07-02 16:47:39 +00:00
Tapeti/Config/IBindingFilter.cs

10 lines
180 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Tapeti.Config
{
public interface IBindingFilter
{
Task<bool> Accept(IMessageContext context, IBinding binding);
}
}