All Packages Class Hierarchy This Package Previous Next Index
Interface semper.download.Administrative
- public interface Administrative
The Administrative interface class defines methods which are
called from the Download Manager in order to get the status
information of a running Thread or to stop a running thread
- Version:
- $Revision: 1.2 $ $Date: 1998/03/13 16:26:41 $
- Author:
- Petros Pantis, Kostas Tzelepis
-
PRESTOPPED
- State of a thread after receiving an interrupt
-
PROCEDING
- Declares the state of a running thread
-
STOPPED
- Declares the state of a stoped(finished) thread
-
getAddresses()
- Method used to retrieve the, associated to a thread, ip-address
-
getState()
- Retieves the execution state of a thread
-
Interrupt(Object)
- Used to interrupt the execution of a thread
-
Notify()
- Wakes up a suspended thread
PROCEDING
public static final int PROCEDING
- Declares the state of a running thread
STOPPED
public static final int STOPPED
- Declares the state of a stoped(finished) thread
PRESTOPPED
public static final int PRESTOPPED
- State of a thread after receiving an interrupt
getAddresses
public abstract Object getAddresses()
- Method used to retrieve the, associated to a thread, ip-address
- Returns:
- value the associated ip-address
Interrupt
public abstract void Interrupt(Object o)
- Used to interrupt the execution of a thread
- Parameters:
- o - the originator of the interrupt
getState
public abstract int getState()
- Retieves the execution state of a thread
- Returns:
- value the execution state
Notify
public abstract void Notify()
- Wakes up a suspended thread
All Packages Class Hierarchy This Package Previous Next Index