admin管理员组文章数量:1342515
I'm trying to model my Application with UML Activity Diagrams. I'm using JavaScript and Node.js and lots of asynchronous callbacks. Here is what I came up with:
What do you think? Do you understand whats going on? I'm using a "generic connector" to associate the callback with the action ("run MyClass.myMethod) and a fork-node to show the "parallel" execution. I did not find a written word about callbacks in Activity Diagrams anywhere on the web or my books.
EDIT This would be the JavaScript code for the diagram:
var MyClass = function () {
//constructor
};
MyClass.prototype = {
myMethod : function(cb) {
//this is an async method
var result = 5 + 5;
setTimeout(function () {
cb(null, result);
},100); //execute Callback after 100ms
}
};
//instanciate a MyClass Object
var myClassInstance = new MyClass();
//create a callback function that prints the result
var callbackFunction = function (err,result) {
console.log(result);
};
myClassInstance.myMethod(callbackFunction);
console.log('I am first');
I'm trying to model my Application with UML Activity Diagrams. I'm using JavaScript and Node.js and lots of asynchronous callbacks. Here is what I came up with:
What do you think? Do you understand whats going on? I'm using a "generic connector" to associate the callback with the action ("run MyClass.myMethod) and a fork-node to show the "parallel" execution. I did not find a written word about callbacks in Activity Diagrams anywhere on the web or my books.
EDIT This would be the JavaScript code for the diagram:
var MyClass = function () {
//constructor
};
MyClass.prototype = {
myMethod : function(cb) {
//this is an async method
var result = 5 + 5;
setTimeout(function () {
cb(null, result);
},100); //execute Callback after 100ms
}
};
//instanciate a MyClass Object
var myClassInstance = new MyClass();
//create a callback function that prints the result
var callbackFunction = function (err,result) {
console.log(result);
};
myClassInstance.myMethod(callbackFunction);
console.log('I am first');
Share
Improve this question
edited Oct 8, 2012 at 7:47
Chris
asked Jul 11, 2012 at 13:32
ChrisChris
4,2251 gold badge28 silver badges30 bronze badges
1
- possible duplicate of stackoverflow./questions/415974/… – Rayfleck Commented Sep 28, 2012 at 14:47
2 Answers
Reset to default 6A correct way to show callbacks is the following:⁺
You instanciate a Object, pass it to the target-port and call the specified operation (calculateTime
) on it. The control flow continues immediately and when the asynchronous operation finishes, the result is transfered to the result-pin. Arguments for the async call can be specified by adding more object-(in)put pins to the Action.
⁺(see UML Spec. 11-08-06 11.3.10 CallOperationAction/ 11.3.8 CallAction)
The best way to show callbacks in activity diagrams would be signals. Just take into account that signals are pletely asynchronous (full detachment between sender and receiver) and I am not sure this is the case in javascript. But they have a closer meaning to what you want.
本文标签: javascriptAsynchronous Callbacks in UML Activity DiagramsStack Overflow
版权声明:本文标题:javascript - Asynchronous Callbacks in UML Activity Diagrams - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702472a2524556.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论