Remix.run Logo
osigurdson 4 days ago

>> If a class extends the special marker type RpcTarget, then instances of that class are passed by reference, with method calls calling back to the location where the object was created.

This is like .NET Remoting. Suggest resisting the temptation to use this kind of stuff. It gets very hard to reason about what is going on.

spullara 4 days ago | parent [-]

Which was directly based on Java RMI. Generally, not thought of as great ideas.