import { Observable } from 'rxjs'; import { Rpc } from '../rpc'; import { RpcObservableClient } from '../rpc-observable-client'; import { RpcOutbound } from '../rpc-outbound'; import { RpcObservableAliveError, RpcObservableAliveRequest, RpcObservableAliveResult } from './rpc-observable-alive-model'; export declare class RpcObservableAliveClient extends RpcObservableClient { /** * Initializes a new instance of the RpcObservableAliveClient class. * * @param rpc the rpc object. */ constructor(rpc: Rpc); /** * The alive command. * * @param request the Rpc alive data object. * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ alive(request?: RpcObservableAliveRequest, outbound?: RpcOutbound): Observable; /** * The alive forever command. * * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ forever(outbound?: RpcOutbound): Observable; /** * The reset forever state command. * * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ reset(outbound?: RpcOutbound): Observable; }