public BenchmarkThread(Console console, BenchmarkArguments args, BenchmarkShared shared, Example example)
 {
     this.console = console;
     this.args = args;
     this.shared = shared;
     this.example = example;
     random = new RandomShift();
 }
 public BenchmarkThreadAsync(
     Console console,
     BenchmarkArguments args,
     BenchmarkShared shared,
     Example example,
     AsyncClient client
 )
     : base(console, args, shared, example)
 {
     this.client = client;
 }
Пример #3
0
 public ExampleTreeNode(String text, Example example)
     : base(text)
 {
     this.example = example;
 }
Пример #4
0
 public ExampleTreeNode(String text, Example example)
     : base(text)
 {
     this.example = example;
 }
Пример #5
0
 public BenchmarkThread(Console console, BenchmarkArguments args, BenchmarkShared shared, Example example)
 {
     this.console = console;
     this.args    = args;
     this.shared  = shared;
     this.example = example;
     random       = new RandomShift();
 }