Event Handling Design: Difference between revisions

From PSwiki
Jump to navigation Jump to search
Magodra (talk | contribs)
No edit summary
Magodra (talk | contribs)
No edit summary
Line 19: Line 19:
}
}


class iNetSubscriber {
  + Verify()
  + HandleMessage()
}


</uml>
</uml>
Line 26: Line 30:
<uml>
<uml>


ServerClass -> MessageHandler : Publish
ServerClass -> MsgHandler : Publish
MsgHandler -> iNetSubscriber : Verify
MsgHandler -> iNetSubscriber : HandleMessage


</uml>
</uml>

Revision as of 19:21, 2 January 2013

Event Handling

Event handling is a speciall case of the Detailed Network Design where messages are published and received inside the server.

Classes

Sequences