diff --git a/src/Wolverine/Configuration/IConfigureLocalQueue.cs b/src/Wolverine/Configuration/IConfigureLocalQueue.cs new file mode 100644 index 00000000..160c1c09 --- /dev/null +++ b/src/Wolverine/Configuration/IConfigureLocalQueue.cs @@ -0,0 +1,13 @@ +using Wolverine.Transports.Local; + +namespace Wolverine.Configuration; + +/// +/// Helps mark a handler to configure the local queue that its messages +/// would be routed to. It's probably only useful to use this with "sticky" handlers +/// that run on an isolated local queue +/// +public interface IConfigureLocalQueue +{ + static abstract void Configure(LocalQueueConfiguration configuration); +} \ No newline at end of file