Changeset 16102 for trunk/FACT++/scripts/doc
- Timestamp:
- 05/24/13 13:36:21 (11 years ago)
- Location:
- trunk/FACT++/scripts/doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/scripts/doc/Thread.js
r16053 r16102 35 35 * A function which is executed aftr the initial timeout. 36 36 * 37 * @param {Object} [_this] 38 * An object which will be the reference for 'this' in the function call. 39 * If none is given, the function itself will be the 'this' object. 40 * 37 41 * @throws 38 42 * <li> If number or type of arguments is wrong … … 43 47 * handle.kill(); 44 48 */ 45 function Thread(timeout, function )49 function Thread(timeout, function, _this) 46 50 { 47 51 /** -
trunk/FACT++/scripts/doc/v8.js
r15074 r16102 31 31 * main purpose of a loop is, e.g., to wait for something to happen. 32 32 * 33 * @param {Integer} [milliseconds]33 * @param {Integer} milliseconds 34 34 * Number of millliseconds until the timeout. Note that even 0 35 35 * will execute the function at least once. If the timeout … … 37 37 * be returned in case of a timeout. 38 38 * 39 * @param {Function} [func]39 * @param {Function} func 40 40 * A function. The function defines when the conditional to end 41 41 * the timeout will be fullfilled. As soon as the function returns … … 43 43 * timeout is stopped and its return value is returned. 44 44 * 45 * @param {Object} [_this] 46 * An object which will be the reference for 'this' in the function call. 47 * If none is given, the function itself will be the 'this' object. 48 * 45 49 * @param [. . .] 46 * Any further argument will be passed to the function.50 * Any further argument will be passed as argument to the function. 47 51 * 48 52 * @returns
Note:
See TracChangeset
for help on using the changeset viewer.