Files
Toolkit2/Toolkit.Foundation/IMicroControllerContextFactory.cs
T
Dan Clark 0afe621f59 Refactor
2025-02-09 13:51:25 +00:00

10 lines
384 B
C#

namespace Toolkit.Foundation;
public interface IMicroControllerContextFactory
{
IMicroControllerContext<TRead, TEvent>? Create<TConfiguration, TReader, TRead, TEvent>(IReadOnlyCollection<IMicroControllerModuleDescriptor> modules)
where TConfiguration : ISerialConfiguration
where TReader : SerialReader<TRead>
where TEvent : ISerialEventArgs<TRead>;
}