Can someone explain what exactly is Eteration and show an example?
source: Long running tasks YUI blog by Douglas Crockford
|
Can someone explain what exactly is Eteration and show an example? source: Long running tasks YUI blog by Douglas Crockford |
|||||
|
|
Initially, I thought it was just a typo of iteration, as searching online for eteration yields no significant results. But, then, I came across references that state that the term is coined by Crockford himself, in one of his talks.
This seems to be part of a related pair of terms, as his next code sample, that performs recursion without using a stack, contains the other member of the pair:
So, it seems that eteration and ecursion are terms invented and defined by Crockford himself to refer to message iteration and recursion in the context of the E Programming Language, designed on top of Java for developers who write distributed applications. The fact that the language is called E is perhaps a reason to give its specific iteration and recursion flavors the chosen terminology (eteration and ecursion). If the context of Javascript, Crockford explains the term eteration as part of the talk Crockford on JavaScript -- Scene 6: Loopage, starting from minute 30:40:
The result is that, instead of a tight loop, blocking the interface if it takes too long, the eteration schedules each step of the loop, in a chain that only blocks the interface while the actual step executes, not between steps. This makes it possible to perform long-running tasks in the same thread as the interface (Javascript is single-threaded), while maintaining application responsiveness. Check out the full talk in much better quality and accompanied by a full-text transcript here. Also, for a reference on how such a technique might be implemented, consider the following scenario:
There are two |
||||
|