Tagged Questions

3
votes
3answers
257 views

Difference between stateless and stateful compression?

In the chapter Filters (scroll down ~50%) in an article about the Remote Call Framework are mentioned 2 ways of compression: ZLib stateless compression ZLib stateful compression What is the ...
2
votes
2answers
470 views

Exceptions not passed correctly thru RCF (using Boost.Serialization)

I use RCF with boost.serialization (why use RCF's copy when we already use the original?) It works OK, but when an exception is thrown in the server, it's not passed correctly to the client. Instead, ...
0
votes
1answer
346 views

RCF for two way IPC

I am using RCF for Inter Process Communication in a project. Is there a way in RCF to create a bi directional channel. I will have server and client running in both processes. I was able to get one ...