RCF¶
Remote Call Framework(远程调用框架 RCF)是一个用于C++的跨平台进程间通信框架。
文档 https://www.deltavsoft.com/doc/
错误排查¶
双方接口声明顺序必须固定¶
RCFUserGuide/Interfaces
The methods in a RCF interface are identified by the order in which they appear. Each method has a method ID number, starting with zero for the first method, and incrementing by 1 for each subsequent method. As the method ID number identifies methods, it's important from a versioning perspective (see Versioning) not to rearrange the order of methods within a RCF interface, or to insert methods between existing methods, if you have already deployed clients and servers using the interface.
RCF 接口中的方法是通过它们出现的顺序来标识的。每个方法都有一个方法 ID 号,第一个方法从零开始,每个后续方法的 ID 号依次递增 1。由于方法 ID 号用于标识方法,因此从版本控制的角度来看(请参阅版本控制),如果您已经使用该接口部署了客户端和服务器,那么不要重新排列 RCF 接口中方法的顺序,也不要在现有方法之间插入新方法,这一点非常重要。