I know that asynchronous programming has seen a lot of changes over the years. I'm somewhat embarrassed that I let myself get this rusty at just 34 years old, but I'm counting on StackOverflow to bring me up to speed.
What I am trying to do is manage a queue of "work" on a separate thread, but in such a way that only one item is processed at a time. I want to post work on this thread and it doesn't need to pass anything back to the caller. Of course I could simply spin up a new Thread
object and have it loop over a shared Queue
object, using sleeps, interrupts, wait handles, etc. But I know things have gotten better since then. We have BlockingCollection
, Task
, async
/await
, not to mention NuGet packages that probably abstract a lot of that.
I know that "What's the best..." questions are generally frowned upon so I'll rephrase it by saying "What is the currently recommended..." way to accomplish something like this using built-in .NET mechanisms preferably. But if a third party NuGet package simplifies things a bunch, it's just as well.
I considered a TaskScheduler
instance with a fixed maximum concurrency of 1, but seems there is probably a much less clunky way to do that by now.
Background
Specifically, what I am trying to do in this case is queue an IP geolocation task during a web request. The same IP might wind up getting queued for geolocation multiple times, but the task will know how to detect that and skip out early if it's already been resolved. But the request handler is just going to throw these () => LocateAddress(context.Request.UserHostAddress)
calls into a queue and let the LocateAddress
method handle duplicate work detection. The geolocation API I am using doesn't like to be bombarded with requests which is why I want to limit it to a single concurrent task at a time. However, it would be nice if the approach was allowed to easily scale to more concurrent tasks with a simple parameter change.
I'm posting a different solution here. To be honest I'm not sure whether this is a good solution.
I'm used to use BlockingCollection to implement a producer/consumer pattern, with a dedicated thread consuming those items. It's fine if there are always data coming in and consumer thread won't sit there and do nothing.
I encountered a scenario that one of the application would like to send emails on a different thread, but total number of emails is not that big. My initial solution was to have a dedicated consumer thread (created by Task.Run()), but a lot of time it just sits there and does nothing.
Old solution:
As you can see, if there are not enough emails to be sent (and it is my case), the consumer thread will spend most of them sitting there and do nothing at all.
I changed my implementation to:
It's no longer a producer/consumer pattern, but it won't have a thread sitting there and does nothing, instead, every time it is to send an email, it will use thread pool thread to do it.
Use
BlockingCollection<Action>
to create a producer/consumer pattern with one consumer (only one thing running at a time like you want) and one or many producers.First define a shared queue somewhere:
In your consumer
Thread
orTask
you take from it:Then from any number of producers on other threads, simply add to the queue:
To create an asynchronous single degree of parallelism queue of work you can simply create a
SemaphoreSlim
, initialized to one, and then have the enqueing methodawait
on the acquisition of that semaphore before starting the requested work.Of course, to have a fixed degree of parallelism other than one simply initialize the semaphore to some other number.
Actually you don't need to run tasks in one thread, you need them to run serially (one after another), and FIFO. TPL doesn't have class for that, but here is my very lightweight, non-blocking implementation with tests. https://github.com/Gentlee/SerialQueue
Also have @Servy implementation there, tests show it is twice slower than mine and it doesn't guarantee FIFO.
Example:
Your best option as I see it is using
TPL Dataflow
'sActionBlock
:TPL Dataflow
is robust, thread-safe,async
-ready and very configurable actor-based framework (available as a nuget)Here's a simple example for a more complicated case. Let's assume you want to:
LocateAddress
and the queue insertion beasync
.