Files
Workspace/Assets/Modules/ShrinkNetwork.Integration.EventBus/ShrinkNetworkEventBusBridgeOptions.cs
T

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; }
}
}