Skip to content

Instantly share code, notes, and snippets.

@glennblock
Created February 14, 2012 07:34
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 glennblock/1824540 to your computer and use it in GitHub Desktop.
Save glennblock/1824540 to your computer and use it in GitHub Desktop.
Create queue
var serviceBusService = azure.createServiceBusService();
serviceBusService.createQueueIfNotExists('taskqueue', function(error, created){
if(!created){
// Queue exists
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment