Skip to content

Instantly share code, notes, and snippets.

View thmarx's full-sized avatar

Thorsten Marx ㋡ thmarx

View GitHub Profile
@thmarx
thmarx / gist:3496991
Created August 28, 2012 10:26
Async javascript method in vertx
load('vertx.js')
// defining a function
var async_function = function(val, callback){
vertx.runOnLoop(function(){
callback(val);
});
};
// using the function