@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
25 lines (23 loc) • 918 B
JavaScript
import { RpcObservableClient } from '../rpc-observable-client';
import { RpcObservablePerformanceKey } from './rpc-observable-performance-model';
export class RpcObservablePerformanceConfigClient extends RpcObservableClient {
/**
* Initializes a new instance of the RpcObservablePerformanceConfigClient class.
*
* @param rpc the rpc object.
*/
constructor(rpc) {
super(rpc, RpcObservablePerformanceKey.configCommand, RpcObservablePerformanceKey.version);
}
/**
* The Performance config command.
*
* @param request the Rpc Performance config object.
* @param outbound the Rpc outbound channel object.
* @return Observable<RpcObservablePerformanceResult> the observable object.
*/
config(request, outbound) {
return this.observableCall(request, outbound);
}
}
//# sourceMappingURL=rpc-observable-performance-config-client.js.map