Skip to content

Instantly share code, notes, and snippets.

@alexjamesbrown
Created February 23, 2019 22:32
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 alexjamesbrown/8d8088d338504de7f1678272bf5265fe to your computer and use it in GitHub Desktop.
Save alexjamesbrown/8d8088d338504de7f1678272bf5265fe to your computer and use it in GitHub Desktop.
Example of ServiceBusTrigger function runtime
var message = ReceiveMessageFromTopic();
try {
//run the code within your function, passing the message as a parameter
RunFunctionCode(message);
}
catch() {
message.Abandon();
}
message.Complete();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment