I am trying to use Microsoft Azure Queue to replace the Thread with a Queue in my progruma, I currently use the Thread to perform some functions, and I would like instead to use those Azure Queue to be able to manage and execute such functions, but studying a little The tool has seen that the CloudQueueMessage can only contain a String or a Byte [], someone knows if there would be a way to use Queue to perform these functions.
I'm currently using my Thread Like.
Thread thread = new Thread(new System.Threading.ThreadStart(timer.StartTimer));
thread.Name = "IdTipoConsulta=" + Convert.ToString(entityTipoConsulta.IdTipoConsulta) +
";" + entityTipoConsulta.Nome +
";" + DateTime.Now.ToString() +
";" + Guid.NewGuid().ToString();
thread.Start();
listThread.Add(thread);