Producer Consumer generic
Generic version of the Producer Consumer framework
|
ProducerConsumerGeneric | |
Consumer< T > | Consumer in a Producer-Consumer framework |
IElementFactory< out T > | Factory producing objects of type T |
MiddleMan< T > | MiddleMan in a Producer-Consumer framework The MiddleMan takes and element from one buffer and add the element to another buffer |
MiddleMan2< TIn, TOut > | MiddleMan in a Producer-Consumer framework The MiddleMan takes and element from one buffer and add the element to another buffer |
Producer< T > | Producer in a Producer-Consumer framework |
Program | Some private static methods to try the different configuration of Producer, Consumer and MiddleMan |
StringFactory | Factory producing String objects. Uses singleton design pattern |