Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ikopylov committed Mar 1, 2018
2 parents e45cc9b + f926846 commit 3ed69c0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Library contains a number of reuseful base classes:
3. [Thread pools](https://github.com/qoollo/system-class-library/wiki/Thread-Pool) - fast thread pools with dynamic adjustment of thread count;
4. [Thread set manager](https://github.com/qoollo/system-class-library/wiki/ThreadSetManager) - simplify common thread start/stop scenarios;
5. [SemaphoreLight](https://github.com/qoollo/system-class-library/wiki/SemaphoreLight) - extremely fast lightweight semaphore;
6. [BlockingQueue](https://github.com/qoollo/system-class-library/wiki/BlockingQueue) - thread safe queue with blocking (up to 5 times faster than BlockingCollection);
6. [BlockingQueue](https://github.com/qoollo/system-class-library/wiki/BlockingQueue) - thread safe queue with blocking (up to 5 times faster than ```BlockingCollection<T>```);
7. [EntryCountingEvent](https://github.com/qoollo/system-class-library/wiki/EntryCountingEvent) - allow to control the clients entered some block of code;
8. [ThrottlingBehaviour](https://github.com/qoollo/system-class-library/wiki/ThrottlingBehaviour) - allow to limit the maximum requests per second;
9. [IoC container](https://github.com/qoollo/system-class-library/wiki/IoC) - simple inversion-of-control container;
Expand All @@ -20,8 +20,9 @@ Library contains a number of reuseful base classes:
12. [Priority Queues](https://github.com/qoollo/system-class-library/wiki/Priority-Queues) - simple queue with limited number of priorities;
13. [CircularList](https://github.com/qoollo/system-class-library/wiki/CircularList) - collection that stores elements inside circular buffer;
14. [Read only collections](https://github.com/qoollo/system-class-library/wiki/Read-only-collections) - a number of useful readonly collections (List, Dictionary, HashSet);
15. [A bunch of extension methods](https://github.com/qoollo/system-class-library/wiki/Extension-Methods) for IEnumerable, Type, Exception.

15. [A bunch of extension methods](https://github.com/qoollo/system-class-library/wiki/Extension-Methods) for ```IEnumerable<T>```, ```Type```, ```Exception```;
16. [MonitorObject](https://github.com/qoollo/dotNet-turbo/wiki/MonitorObject) - object oriented abstraction over BCL ```Monitor.Wait()```, ```Monitor.Pulse()```, ```Monitor.PulseAll()```;
17. [Queues](https://github.com/qoollo/dotNet-turbo/wiki/Queues) - exposes 4 types of thread-safe blocking queues: ```MemoryQueue<T>```, ```DiskQueue<T>```, ```TransformationQueue<T>``` and ```LevelingQueue<T>```.

## NuGet
[Qoollo.Turbo](https://www.nuget.org/packages/Qoollo.Turbo/)

0 comments on commit 3ed69c0

Please sign in to comment.