-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExecutor.cs
51 lines (44 loc) · 1.49 KB
/
Executor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using Newtonsoft.Json;
namespace KafkaTester
{
internal class Executor
{
private readonly MessageProducer messageProducer;
private readonly MockDb mockDb;
public Executor()
{
this.messageProducer = new MessageProducer();
this.mockDb = new MockDb();
}
internal void Run()
{
Console.WriteLine("Running...");
WriteAllSecurities();
WriteRandomPositions(10);
}
private void WriteRandomPositions(int count)
{
var positions = this.mockDb.GenerateRandomPositions(count);
var topic = "Positions";
foreach (var position in positions)
{
var key = JsonConvert.SerializeObject(position.SecurityMasterId);
var value = JsonConvert.SerializeObject(position);
this.messageProducer.ProduceMessage(topic, key, value);
}
}
private void WriteAllSecurities()
{
var securities = this.mockDb.GetAllSecurities();
var topic = "SecurityMaster";
foreach (var security in securities)
{
var key = JsonConvert.SerializeObject(security.SecurityMasterId);
var value = JsonConvert.SerializeObject(security);
Console.WriteLine($"Key: {key} Body: {value}");
this.messageProducer.ProduceMessage(topic, key, value);
}
}
}
}