public CreateTopicService()
 {
     CreatingTopic = new CreatingTopic(Db);
     Db.CreateTableIfNotExists <Topic>();
 }
Exemple #2
0
 public QueuesAndTopicsService()
 {
     GettingQueuesAndTopics = new GettingQueuesAndTopics(Db);
     Db.CreateTableIfNotExists <Queue>();
     Db.CreateTableIfNotExists <Topic>();
 }
Exemple #3
0
 public CreateQueueService()
 {
     CreatingQueue = new CreatingQueue(Db);
     Db.CreateTableIfNotExists <Queue>();
 }
Exemple #4
0
 public WorkerHeartbeatService()
 {
     RegisteringWorker = new RegisteringWorker(Db);
     Db.CreateTableIfNotExists <Worker>();
 }