Skip to content

Instantly share code, notes, and snippets.

@namitts82
Created February 24, 2016 22:02
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 namitts82/96f47c7e2f8ed2a10461 to your computer and use it in GitHub Desktop.
Save namitts82/96f47c7e2f8ed2a10461 to your computer and use it in GitHub Desktop.
namespace testjob
{
public class Functions
{
[NoAutomaticTriggerAttribute]
public static async Task ProcessSomething(TextWriter log)
{
Thread.Sleep(7000);
log.WriteLine("Process Something called at : " + DateTime.Now.ToShortDateString() + " , " + DateTime.Now.ToShortTimeString());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment