Skip to content

Instantly share code, notes, and snippets.

@laser
Last active August 29, 2015 14:01
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 laser/baa6b663f98cf49d8469 to your computer and use it in GitHub Desktop.
Save laser/baa6b663f98cf49d8469 to your computer and use it in GitHub Desktop.
Batch Client - Node.js
#!/usr/bin/env node
var barrister = require('barrister');
var client = barrister.httpClient("http://localhost:3000/v1/todos");
client.loadContract(function(err) {
var batch = client.startBatch();
var batchTodoManager = batch.proxy("TodoManager");
batchTodoManager.createTodo({ 'title' : 'Call Mom', 'completed' : false })
batchTodoManager.createTodo({ 'title' : 'Call Dad', 'completed' : false })
batchTodoManager.createTodo({ 'title' : 'Wash car', 'completed' : false })
batchTodoManager.createTodo({ 'title' : 'Eat Ham', 'completed' : false })
batch.send(function(err, result) {
for (var i = 0, len = result.length; i < len; i++) {
// either result[i].error or result[i].result will be set
if (result[i].error) {
console.log("err.code=" + result[i].error.code);
}
else {
// result from a successful call
console.log(result[i].result);
}
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment