vote up 1 vote down star
3

I am about to draw/document for some client-server connection establishing code to better understand it. There are several operations that are done asynchronously in separate threads (connecting threads, data receiving threads, etc).

Should I show them on separate diagrams? I would prefer to have it on a single diagram to grasp overall view but don't know how to represent it on Activity diagram.

flag

78% accept rate

2 Answers

vote up 2 vote down check

I'm not sure if there's a correct way of doing this, I developed my own method by testing different strategies until I came up with something that worked for my own mindset.

This is how I do it:

  • Threads == Swimlanes
  • Thread Operations == Action/Activity nodes
  • Critical sections == Object nodes
  • Thread creation == Fork nodes

An example image below.

alt text

link|flag
And this is exactly how I did this :) – Marcin Gil Jan 30 at 20:02
vote up 0 vote down

Instead of using full arrowheads you can use half arrowheads to show an asynchronous message call. As shown

alt text

link|flag
This is sequence diagram - not activity diagram. I would like to have overall actions instead of specific function calls to see what's going on. – Marcin Gil Jan 6 '09 at 11:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.