I have the following scenario. I have a console app (let's call it consoleapp.exe) that takes some parameter value and runs continuously. So if I have consoleapp.exe "cars" -- this will have the app run for "cars"
Now let's say, I need "animals"' consoleapp.exe "animals" -- this will have the app run for "animals"
Essentially, I need a webjob to be created and run continuously each time there is a need for a new parameter value.
consoleapp.exe "cars" --> webjob_cars
consoleapp.exe "animals" --> webjob_animals
consoleapp.exe "robots" --> webjob_robots
Which means, a webjob really gets created for the same consoleapp.exe except for different parameter values.
How do I go about accomplishing this?