[capnproto] Fibers and compiling without exceptions

2022-10-10 Thread John Demme
Hi All- I have a code base which doesn't have exceptions enabled (it's an LLVM code base wherein policy prevents compiling with exceptions). I'd like to use the Cap'n Proto (C++) RPC server but cannot use fibers without exceptions. I know it's possible to compile Cap'n Proto without fibers but

Re: [capnproto] Best practice for dynamic_cast equivalent method for extended interfaces

2022-10-10 Thread Christophe Alexandre
Hi, Related to this, I tried the following schema: interface MyType { getName @0 () -> (name :Text); } struct ObjectInfo { object @0 :MyType; isA@1 :Bool; } interface Test { getObjectInfo @0 () -> (objectInfo: ObjectInfo); } After generating the C++ classes, on the client side, there