Skip to content
Jef King edited this page Jun 27, 2018 · 6 revisions

Use Case

The initialize task will run once; this is perfect for setting up your compute environment, like creating a queue to ensure that it is available.

class MyTask : InitializeTask
{
	public override void Run()
	{
		//Initialize one time resource.
	}
}

Check out the Azure Storage initialize tasks!

Clone this wiki locally