15 lines
467 B
C#
15 lines
467 B
C#
#nullable enable
|
|
using System;
|
|
using ShrinkEventBus;
|
|
|
|
namespace ShrinkNetwork.Integration
|
|
{
|
|
public sealed class ShrinkNetworkEventBusBridgeOptions
|
|
{
|
|
public bool AutoRegisterAttributedMessages { get; set; } = true;
|
|
public bool AutoRegisterStaticHandlers { get; set; }
|
|
public Func<ShrinkNetworkSession, EventBase, bool>? SessionFilter { get; set; }
|
|
public IShrinkNetworkDispatchScheduler? DispatchScheduler { get; set; }
|
|
}
|
|
}
|