Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
borland committed Aug 23, 2015
1 parent 9e6d9e5 commit cfc0e8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Serial queues offer a very interesting option in the "middle" of these two space
- They are very lightweight (each queue is literally not much more than a List and a few lock objects), so you can easily have thousands of them
- They have a usage model which is similar to threads and is easier to reason about

# Example
# Example

var q = new SerialQueue();
q.DispatchAsync(() => {
Expand All @@ -45,4 +45,4 @@ Thus, the actions are thread-safe and easy to reason about.

The actual execution of the functions is managed by the built-in .NET ThreadPool (the default implementation just uses `Task.Run`) so many thousands of queues will be backed by perhaps 8 or so underlying OS threads in the threadpool

More Documentation is available on the [Github wiki](https://github.com/borland/SerialQueue/wiki)
More Documentation is available on the [Github wiki](https://github.com/borland/SerialQueue/wiki)

0 comments on commit cfc0e8a

Please sign in to comment.