Reputation: 197
can anyone help me in implementing how to migrate the objects from one JVM to other if my application (running on two machines ) is crashed and the other one can take hold from it.
Upvotes: 0
Views: 166
Reputation: 13890
This functionality is not available in JVM out of the box, but some thirdparty solutions exist. Look at terracotta for example.
Upvotes: 1
Reputation: 1048
Wouldn't it work if you make your object serializable and send it over a stream to a server for example?
Upvotes: 0