Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Jan 16, 2025
1 parent 2c63fcb commit d55890e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Wolverine/Configuration/IConfigureLocalQueue.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Wolverine.Transports.Local;

namespace Wolverine.Configuration;

/// <summary>
/// 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
/// </summary>
public interface IConfigureLocalQueue
{
static abstract void Configure(LocalQueueConfiguration configuration);
}

0 comments on commit d55890e

Please sign in to comment.