HomeForumSourceResearchGuide
Sign in to contribute to source. how it works
Type definition file lang.ProcessLoop by barry
expand copy to clipboardexpand
/*
 {"description" : "This type represents a computing process which expects its logic to be executed 1-n times, where the timing of the repeated executions is at the discretion of a scheduler."}
*/

interface ProcessLoop {
	
	/*
	 {"@description" : "Instantiate a new process loop object."}
	*/
	ProcessLoop()
	
	/*
	 {"@description" : "Run an iteration of the processing loop, which will return true if further iterations are required, or false otherwise."}
	*/
	bool loop()
	
	}
Revision history
To propose a new revision to this entity, use dana source put -ut your/new/version.dn -n lang.ProcessLoop -m "reason for update" -u yourUsername
Version 1 (this version) by barry
Notes for this version: Adds ProcessLoop support