Interface ISimProcessListener


public interface ISimProcessListener
This listener can be registered with a ISimProcess in order to receive a notification whenever the process is suspended or resumed again.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is called whenever the given simulated process is about to be resumed.
    void
    This method is called whenever the given simulated process is about to be suspended.
    void
     
  • Method Details

    • notifyResuming

      void notifyResuming(ISimProcess process)
      This method is called whenever the given simulated process is about to be resumed.
      Parameters:
      process - the simulated process
    • notifySuspending

      void notifySuspending(ISimProcess process)
      This method is called whenever the given simulated process is about to be suspended.
      Parameters:
      process - the simulated process
    • notifyTerminated

      void notifyTerminated(ISimProcess process)