I have a Java class which already extends the Java default UnicastRemoteObject:
public class ApplicationServerImpl extends UnicastRemoteObject implements ApplicationServer
I wish to create a thread within this class to perform a check periodically using thread.sleep - could someone please show me how this is possible if I am already extending a default Java class.