Package com.parctechnologies.eclipse
Interface MultitaskListener
-
public interface MultitaskListener
Interface defining a listener for entering and leaving multitask phases.- See Also:
EclipseMultitaskConnection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
ending(EclipseMultitaskConnection eclipse, java.lang.String type)
Called when ECLiPSe is leaving a multitasking phase.void
starting(EclipseMultitaskConnection eclipse, java.lang.String type)
Called when ECLiPSe enters a multitasking phase.
-
-
-
Method Detail
-
starting
void starting(EclipseMultitaskConnection eclipse, java.lang.String type)
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
void ending(EclipseMultitaskConnection eclipse, java.lang.String type)
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
-
-