org.glite.data.common.helpers
Interface MaintenanceThread


public interface MaintenanceThread

Defines the methods that a maintenance thread must implement.


Method Summary
 void run()
          The run method must exist.
 void shutdown()
          To shuitdown the thread.
 

Method Detail

shutdown

public void shutdown()
To shuitdown the thread. The thread should response to this in a reasonable time.


run

public void run()
The run method must exist. This implies that the MaintenacneThread must extend java.lang.Thread.