1
0

IKernelOutputSet.cs 290 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. namespace NTMiner.Core.Kernels {
  4. public interface IKernelOutputSet {
  5. bool Contains(Guid id);
  6. bool TryGetKernelOutput(Guid id, out IKernelOutput kernelOutput);
  7. IEnumerable<IKernelOutput> AsEnumerable();
  8. }
  9. }