| 123456789101112131415161718192021222324 |
- using System.Collections.Concurrent;
- namespace Terminal.Gui.Drivers;
- /// <summary>
- /// Input processor for <see cref="NetInput"/>, deals in <see cref="ConsoleKeyInfo"/> stream
- /// </summary>
- public class NetInputProcessor : InputProcessorImpl<ConsoleKeyInfo>
- {
- /// <inheritdoc/>
- public NetInputProcessor (ConcurrentQueue<ConsoleKeyInfo> inputBuffer) : base (inputBuffer, new NetKeyConverter ())
- {
- DriverName = "dotnet";
- }
- /// <inheritdoc/>
- protected override void Process (ConsoleKeyInfo input)
- {
- foreach (Tuple<char, ConsoleKeyInfo> released in Parser.ProcessInput (Tuple.Create (input.KeyChar, input)))
- {
- ProcessAfterParsing (released.Item2);
- }
- }
- }
|