Skip to content

IKRpcClient

Weitian Leung edited this page Mar 7, 2020 · 1 revision
class IKRpcClient(sip.wrapper)
 |  getProcessPid(self) -> Tuple[int, int]
 |  
 |  getWpsApplication(self) -> Tuple[int, wpsapi._Application]
 |  
 |  getWppApplication(self) -> Tuple[int, wppapi._Application]
 |  
 |  getEtApplication(self) -> Tuple[int, etapi._Application]
 |  
 |  registerEvent(self, IDispatch, GUID, str, Callable[..., None]) -> int
 |  
 |  setProcessArgs(self, List[str]) -> int
 |  
 |  setProcessPath(self, str) -> int
 |  
 |  setStartTimeout(self, int) -> int
 |  
 |  setWpsWid(self, int) -> int

The IKRpcClient is an abstract class, the only way to created is:

# for wps
hr, rpc = rpcwpsapi.createWpsRpcInstance()

# for wpp
hr, rpc = rpcwppapi.createWppRpcInstance()

# for et
hr, rpc = rpcetapi.createEtRpcInstance()
Clone this wiki locally