Skip to content

Instantly share code, notes, and snippets.

@krainboltgreene
Created January 20, 2013 00:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krainboltgreene/4575966 to your computer and use it in GitHub Desktop.
Save krainboltgreene/4575966 to your computer and use it in GitHub Desktop.

Control:

  • Receives raw unserialized data
  • Passes the unserialized data and a context to the proper Model
  • Prepares the proper type of Presenter with that Model Model:
  • Recieves unserialized and context
  • Validates the unserialized data based on the context
  • Serializes the validated data
  • Passes serialized validated data and context to the Store Store:
  • Takes serialized validated data
  • Hands data off to the proper Adapter Presenter:
  • Gets initialized by the Control in context of the Model
  • Renders format based on responses from the Model
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment