CompServHubClient.cs 418 B

12345678910111213141516171819
  1. using static CompServ.CompServConst;
  2. namespace CompServ.ClientLibrary;
  3. public class CompServHubClient(string server) : CompServClient(server, ApiPathHubRootForCheckAlive, AliveMessageHub)
  4. {
  5. public async Task RegisterWorker(int port)
  6. {
  7. }
  8. public async Task UnRegisterWorker(int port)
  9. {
  10. }
  11. public async Task<string> GetWorker()
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }