▲ | closeparen 4 days ago | |||||||||||||
CORBA is trippier than that. A client’s request could include elements not normally serializable, like callbacks. A server could provide an object in response to your query and then continue mutating it, with the mutations reflected (effectively) in your address space, without your knowledge or participation. | ||||||||||||||
▲ | kiitos 2 days ago | parent | next [-] | |||||||||||||
I am not really sure what you're talking about RPC is "remote procedure call", emphasis on "remote", meaning you always necessarily gonna be serializing/deserializing the information over some kind of wire, between discrete/different nodes, with discrete/distinct address spaces a client request by definition can't include anything that can't be serialized, serialization is the ground truth requirement for any kind of RPC... a server doesn't provide "an object" in response to a query, it provides "a response payload", which is at most a snapshot of some state it had at the time of the request, it's not as if there is any expectation that this serialized state is gonna be consistent between nodes | ||||||||||||||
| ||||||||||||||
▲ | kentonv 4 days ago | parent | prev [-] | |||||||||||||
That's exactly what Cap'n Web does... |