Yes, zNet from www.zircomp.com does exactly that. It is data driven architecture that supports events passing between Active Queues. Event could be of any data type (built-in or user definened) or of a function type (i.e. carry function pointer). Data events could be passed between co-located or distributed threads; discovery, communication, streaming is taken care of by the framework. To process event the subscribing queue registers handlers for the specific data type. The handler could be any method of any object (or global or C function if desired). Function Events are used for co-located scenarios. Load Balancer with dynamic feedback takes care of distributing events to the least loaded services on the net. zNet also supplies the C++ application server, or zEngine, that is capable of loading (and re-loading in runtime) any user library and advertising functions/methods for remote execution. The client application automatically discovers such services and matches events to functions. All communication is asynchronous, replies could be processed in a callback or on a barrier.
In addition to C++, zNet has C interface and was even adapted to R.