Skip to content

Instantly share code, notes, and snippets.

@yuriatgoogle
Created April 7, 2018 23:24
Show Gist options
  • Save yuriatgoogle/fab1e18ccfdd5ea86a216c36ee7101ae to your computer and use it in GitHub Desktop.
Save yuriatgoogle/fab1e18ccfdd5ea86a216c36ee7101ae to your computer and use it in GitHub Desktop.
/**
* Implements the SayHello RPC method.
*/
function sayHello(call, callback) {
sleep.sleep(getRandomInt(5));
callback(null, {message: 'Hello ' + call.request.name});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment