sod.exec
Class Run2

java.lang.Object
  |
  +--sod.util.AbstractApplication
        |
        +--sod.exec.Run2
All Implemented Interfaces:
java.io.Serializable

public class Run2
extends AbstractApplication

See Also:
Serialized Form

Fields inherited from class sod.util.AbstractApplication
out
 
Constructor Summary
Run2()
           
 
Method Summary
 void resume()
          This method will be called to resume execution of the application after a it was suspended.
 void run()
          This method will be called to run this application.
 void suspend()
          This method will be called to suspend the application, so the process can be migrated.
 
Methods inherited from class sod.util.AbstractApplication
init
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Run2

public Run2()
Method Detail

suspend

public void suspend()
Description copied from class: AbstractApplication
This method will be called to suspend the application, so the process can be migrated.
Overrides:
suspend in class AbstractApplication

resume

public void resume()
Description copied from class: AbstractApplication
This method will be called to resume execution of the application after a it was suspended.
Overrides:
resume in class AbstractApplication

run

public void run()
Description copied from class: AbstractApplication
This method will be called to run this application. Note that it will be called even after the application was suspended.
Overrides:
run in class AbstractApplication