public void HardwareInfoUpdate(
     string cpuNameAndSpeed, int numberOfCores, int totalRamInMb,
     int memoryBusSpeed, string platformName, string ipAddresses)
 {
     _proxy.InvokeRemoteAction(() =>
                               _service.HardwareInfoUpdate(
                                   cpuNameAndSpeed, numberOfCores, totalRamInMb,
                                   memoryBusSpeed, platformName, ipAddresses));
 }
Beispiel #2
0
 public bool Produce(byte[] compressedJsonAlerts)
 {
     return(_proxy.InvokeRemoteAction(() => _service.Produce(compressedJsonAlerts)));
 }