Created
December 16, 2010 23:44
-
-
Save casualjim/744234 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncGet("/route") { | |
// all methods below are optional so in reality you would only see 2 or 3 | |
init { continuation => | |
} | |
resumed { continuation => | |
} | |
expired { continuation => | |
} | |
suspended { continuation => | |
} | |
completing { continuation => | |
} | |
timingOut { continuation => | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment