Package ptolemy.domains.coroutine.kernel
Interface Continuation
- 
- All Known Implementing Classes:
- AtomicContinuationActor,- Conditional,- CoroutineDirector,- Counter,- Emit,- Pause
 
 public interface ContinuationContinuation class.- Since:
- Ptolemy II 11.0
- Version:
- $Id$
- Author:
- shaver
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ControlExitTokencontrolEnter(ControlEntryToken entry)ControlExitTokencontrolEnterAt(ControlEntryToken.EntryLocation location)ControlExitTokencontrolInit()ControlExitTokencontrolResume()java.util.List<ControlEntryToken.EntryLocation>entryLocations()Returns the set of exposed Entry Locations.java.util.List<ControlExitToken.ExitLocation>exitLocations()Returns the set of exposed Exit Locations.
 
- 
- 
- 
Method Detail- 
controlEnterControlExitToken controlEnter(ControlEntryToken entry) throws IllegalActionException - Throws:
- IllegalActionException
 
 - 
controlInitControlExitToken controlInit() throws IllegalActionException - Throws:
- IllegalActionException
 
 - 
controlResumeControlExitToken controlResume() throws IllegalActionException - Throws:
- IllegalActionException
 
 - 
controlEnterAtControlExitToken controlEnterAt(ControlEntryToken.EntryLocation location) throws IllegalActionException - Throws:
- IllegalActionException
 
 - 
entryLocationsjava.util.List<ControlEntryToken.EntryLocation> entryLocations() Returns the set of exposed Entry Locations. Some internal entry locations may exist that are not exposed to the interface.
 - 
exitLocationsjava.util.List<ControlExitToken.ExitLocation> exitLocations() Returns the set of exposed Exit Locations. Some internal exit locations may exist that are not exposed to the interface.
 
- 
 
-