| org.cougaar.mts.std.StepService
StepService | public interface StepService extends Service(Code) | | This MTS-internal Service can be used to 'single-step' a message
through the stations. Its only real use so far is through a Swing
gui, but in principle it could have other uses (e.g., @{link
StepperControlExampleAspect}). The implementation is in the
StepperAspect .
|
Method Summary | |
void | pause(MessageAddress destination) Pause processing to the given destination. | void | pauseAll() Pause processing to all destinations. | void | resume(MessageAddress destination) Resume processing to the given destination. | void | resumeAll() Resume processing to all destinations. | void | step(MessageAddress destination) Allow the frozen message (if any) to proceed, for the given
destination. | void | stepAll() Allow the frozen message (if any) to proceed, for all
destinations. |
pause | void pause(MessageAddress destination)(Code) | | Pause processing to the given destination. The next message to
that destination will be frozen until a subsequent resume or
step.
|
pauseAll | void pauseAll()(Code) | | Pause processing to all destinations. The next message to each
destination will be frozen until a subsequent resume or
step.
|
resumeAll | void resumeAll()(Code) | | Resume processing to all destinations.
|
step | void step(MessageAddress destination)(Code) | | Allow the frozen message (if any) to proceed, for the given
destination.
|
stepAll | void stepAll()(Code) | | Allow the frozen message (if any) to proceed, for all
destinations.
|
|
|