From d55890e70ddfa69720fa30a79b51eba8429b3005 Mon Sep 17 00:00:00 2001 From: "Jeremy D. Miller" Date: Thu, 16 Jan 2025 06:05:54 -0600 Subject: [PATCH] wip --- src/Wolverine/Configuration/IConfigureLocalQueue.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Wolverine/Configuration/IConfigureLocalQueue.cs 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