Exemplo n.º 1
0
 public KPICommand(KPIConfiguration config, string collection)
 {
     this.Config = config;
     this.client = new KPISecureClient(this.Config.WriteKey);
     this.Collection = collection;
     this.queue = new Queue<DataItem>();
 }
Exemplo n.º 2
0
 public void Configure(KPIConfiguration config)
 {
     this.Config = config;
 }
Exemplo n.º 3
0
 public KPIDispatcher(KPIConfiguration config)
 {
     this.Configure(config);
 }