Skip to content

Instantly share code, notes, and snippets.

@osdrv
Created January 4, 2012 22:02
Show Gist options
  • Save osdrv/1562418 to your computer and use it in GitHub Desktop.
Save osdrv/1562418 to your computer and use it in GitHub Desktop.
async http request handler with lambda handler
class MyClass {
void loadData() {
String data_url = "http://4pcbr.com";
HTTPLoader loader = new HTTPLoader();
try {
loader.load( data_url, new LambdaHandler() {
public void success( String res ) {
handleResponse( res );
}
} );
} catch ( Exception e ) {
println( e );
}
}
void handleResponse( String res ) {
println( res );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment