peter_czaholi

About

Username
peter_czaholi
Joined
Visits
11
Last Active
Roles
Member

Comments

  • sendCommand: public async Task sendCommand(byte[] command) {                 if (GetModule() is Event eventModule && eventModule.ActiveDataType != null) {                     eventModule.convertToEventCommand(command);               …
  • Execute: internal async Task Execute(string format, int timeout, Action action) {             taskSource = new TaskCompletionSource();             cts = new CancellationTokenSource();             action();             if (timeout != 0) {…
  • Sorry, here is the missing code DiscoverModules: private async Task DiscoverModulesAsync(ICollection ignore) {             var output = new OrderedDictionary();             readInfoRegisterTask = new TimedTask();             try {        …