使用Publish方法时,我可以设置优先级并添加标题。
await _Bus.Publish<T>(value, x =>
{
x.SetPriority(priority);
x.Headers.Set("SenderApp", Assembly.GetEntryAssembly()?.GetName()?.Name ?? "Default");
}).ConfigureAwait(false);
是否可以使用ScheduleSend方法执行此操作?如果是这样,请问如何到达那里?
await _Bus.ScheduleSend<T>(destination, delay, value).ConfigureAwait(false);
上下文不同,我找不到任何示例。
我的配置: