How to use unicastremoteobject if my class already extends another class ...?

I have a problem that my class is Serveralready extending another class. How to use UniCastRemoteObject?

+3
source share
1 answer

Just call UnicastRemoteObject.exportObject(). This will export the object, just like calling super () if your class is extended UnicastRemoteObject.

+5
source

All Articles