I'm using azure service fabric for our new service.
For the client-facing gateway I have a stateless service getting request using a Web API endpoint, the actual work is done using reliable stateless actors.
As suggested by Sean McKenna - MSFT in this question, I put the incoming request in a ReliableQueue and storing the result in a ReliableDictionary.
I don't understand how to implement this, where do I define the ReliableQueue?? it is obvious(?) that enqueue a job will occur at the Web API controller, but where do i dequeue an object and when? there are no event firing telling me an object was added??
As you see I'll love some help on this
Thanks