2018-04-06 11:02:18 +00:00
|
|
|
import { Injectable } from '@angular/core';
|
2018-06-04 08:25:29 +00:00
|
|
|
import { Observable } from 'rxjs';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
import { RPCService } from '@loafer/ng-rpc';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-02 08:09:39 +00:00
|
|
|
import { Domain } from '@overflow/commons-typescript/model/domain';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-02 08:09:39 +00:00
|
|
|
import { Probe } from '@overflow/commons-typescript/model/probe';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ProbeService {
|
|
|
|
|
|
|
|
public constructor(
|
|
|
|
private rpcService: RPCService,
|
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-06-14 04:38:51 +00:00
|
|
|
public readAllByDomainID(domainID: number): Observable<Probe[]> {
|
|
|
|
return this.rpcService.call<Probe[]>('ProbeService.readAllByDomainID', domainID);
|
2018-04-06 11:02:18 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 08:25:29 +00:00
|
|
|
public read(id: number): Observable<Probe> {
|
2018-04-06 11:02:18 +00:00
|
|
|
return this.rpcService.call<Probe>('ProbeService.read', id);
|
|
|
|
}
|
2018-04-25 09:04:47 +00:00
|
|
|
|
2018-04-27 07:31:27 +00:00
|
|
|
public modify(probe: Probe): Observable<Probe> {
|
|
|
|
return this.rpcService.call<Probe>('ProbeService.modify', probe);
|
|
|
|
}
|
|
|
|
|
2018-06-04 08:25:29 +00:00
|
|
|
public remove(id: number): Observable<boolean> {
|
2018-04-29 10:43:14 +00:00
|
|
|
return this.rpcService.call<boolean>('ProbeService.remove', id);
|
|
|
|
}
|
|
|
|
|
2018-04-06 11:02:18 +00:00
|
|
|
}
|