what is UnicastRemoteObject
All remote objects must extend UnicastRemoteObject, which provides functionality that is needed to make objects available from remote machines. In Java, UnicastRemoteObject is a class that provides support for creating and exporting remote objects with a specific protocol (typically, Java Remote Method Invocation or RMI). This class extends java.rmi.server.RemoteObject and implements the java.rmi.server.Unreferenced interface. The … Read more