Questions
What are the two types of cloud services?
What is the difference between a website and a web role?
What is the base class of a worker role?
Name the three worker role life cycle methods.
What happens if the
Run
method is not blocked?How can we find the status of the storage emulator?
What method must we call on a
BrokeredMessage
object to delete it from a subscription when we usePeekLock ReceiveMode
?When we use async tasks in a worker role, why do we need to implement
Task.Wait
orTask.WaitAll
in theRun
method?Which NuGet package do we need to interact with a storage queue and what command do we use to install it?
How do we remove a storage queue message when we're finished with it?
What extra steps do we need to take to run multiple role instances locally?
When is it a good idea to delete a cloud service and why must we only delete the instances?