序列图返回一个新构造的对象
我正在绘制场景所在的序列图。 1. Actor 调用 :Table::query(query:String)
- :Table::query 调用 :Connection::execute(query)
- :Connection::execute <>一个新的 :Row 对象
- :Connection::execute 调用 :Row::fillData(result)
- :Connection::execute 返回 :Row
- ...... 还有更多
,但我卡在第 5 步中
,我无法理解如何绘制它, :Connection::execute 以标准方式返回新构造的行本身。
I am drawing a Sequence Diagram where the scenario is.
1. an Actor calls :Table::query(query:String)
- :Table::query Calls :Connection::execute(query)
- :Connection::execute <> a new :Row Object
- :Connection::execute calls :Row::fillData(result)
- :Connection::execute returns :Row
- ...... There are More
But I am Stuck in Step 5
I cant Understand how to draw that, :Connection::execute returning the newly Constructed Row itself, in a Standard way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,也许从 :Connection 到 :Table 的简单返回消息以及该结果就足够了:
问题中描述的工作流程的序列图,结果由返回/回复消息http://携带www.freeimagehosting.net/uploads/e33283f7af.png
Hmm, maybe simple return message from :Connection to :Table with that result will suffice:
sequence diagram with workflow described in the question, result is carried by the return/reply message http://www.freeimagehosting.net/uploads/e33283f7af.png