public async Task StopAsync(string configuration, TargetDevice targetdevice, Action ApplicationStopped) { await api.ApplicationStopAsync(this.Id, configuration, targetdevice.Id); ApplicationStopped?.Invoke(); }
public DockerImageInstantiator(TargetDevice device) { this.device = device; }
public DockerImages(TargetDevice device) : base("Id", new DockerImageInstantiator(device)) { this.api = TorizonAPIManager.GetDevicesApi(); this.device = device; }
public Processes(TargetDevice device) : base("Pid", new ProcessInstantiator()) { this.device = device; api = TorizonAPIManager.GetDevicesApi(); }