Skip to content

Instantly share code, notes, and snippets.

@canonic-epicure
Created May 27, 2010 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canonic-epicure/416044 to your computer and use it in GitHub Desktop.
Save canonic-epicure/416044 to your computer and use it in GitHub Desktop.
Class('DataStore.Sync', {
methods : {
log : function () {
var response = // somehow get the response from logging operation
return response
},
save : function () {
this.log()
var response = // somehow get the response from saving operation
if (response.err) throw response.err
return response
}
}
})
var store = new DataStore.Sync
try {
var response = store.save()
} catch (e) {
// do smth
} finally {
// do smth
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment