sod.exec
Class Run1

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

public class Run1
extends AbstractApplication

See Also:
Serialized Form

Fields inherited from class sod.util.AbstractApplication
out
 
Constructor Summary
Run1()
           
 
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

Run1

public Run1()
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