Package com.parctechnologies.eclipse
Interface MultitaskListener
public interface MultitaskListener
Interface defining a listener for entering and leaving multitask
phases.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidending(EclipseMultitaskConnection eclipse, String type) Called when ECLiPSe is leaving a multitasking phase.voidstarting(EclipseMultitaskConnection eclipse, String type) Called when ECLiPSe enters a multitasking phase.
-
Method Details
-
starting
Called when ECLiPSe enters a multitasking phase.If a peer is interested in the type of multitasking phase, then it should call multitaskConfirm() on the EclipseMultitaskConnection object within this method.
This method is called before any pending multitasking RPCs
-
ending
Called when ECLiPSe is leaving a multitasking phase.The peer can still perform multitasking RPCs for the duration of this method call.
This method is called before any pending RPCs
-