Mark van Renswoude
f8fca5879c
- Compiles, but that's about it. Plenty of ToDo's left before it will run. Beware, ye who enter here. - Cleanup of the internals, with the aim to keep the interface to application code compatible - Added the ability to declare durable queues on startup and update the bindings - Possibly fixed an issue with publish timeouts being logged after a reconnect
18 lines
610 B
C#
18 lines
610 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Tapeti.Config
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Provides a way for Tapeti extensions to register custom bindings.
|
|
/// </summary>
|
|
public interface ITapetiExtensionBinding : ITapetiExtension
|
|
{
|
|
/// <summary>
|
|
/// Produces a list of bindings to be registered.
|
|
/// </summary>
|
|
/// <param name="dependencyResolver"></param>
|
|
/// <returns>A list of bindings or null if no bindings need to be registered</returns>
|
|
IEnumerable<IBinding> GetBindings(IDependencyResolver dependencyResolver);
|
|
}
|
|
} |