Producer and comsumer in a synchronized buffer : Producer Consumer « Thread « C# / C Sharp

C# / C Sharp
1. 2D Graphics
2. Class Interface
3. Collections Data Structure
4. Components
5. Data Types
6. Database ADO.net
7. Design Patterns
8. Development Class
9. Event
10. File Stream
11. Generics
12. GUI Windows Form
13. Language Basics
14. LINQ
15. Network
16. Office
17. Reflection
18. Regular Expressions
19. Security
20. Services Event
21. Thread
22. Web Services
23. Windows
24. XML
25. XML LINQ
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / C Sharp » Thread » Producer ConsumerScreenshots 
Producer and comsumer in a synchronized buffer
Producer and comsumer in a synchronized buffer

/*
Code revised from Book published by 
(C) Copyright 1992-2006 by Deitel & Associates, Inc. and
Pearson Education, Inc. All Rights Reserved.  

*/


using System;
using System.Threading;

public class SynchronizedBuffer
{
   private int buffer = -1

   private int occupiedBufferCount = 0;  

   public int Buffer
   {      
      get
      
         Monitor.Enterthis );

         if occupiedBufferCount == )
         {
            Console.WriteLine(Thread.CurrentThread.Name + " tries to read." );
            DisplayState"Buffer empty. " +Thread.CurrentThread.Name + " waits." );
            Monitor.Waitthis );
         
         --occupiedBufferCount;    
                              
         DisplayStateThread.CurrentThread.Name + " reads " + buffer );

         Monitor.Pulsethis );
         int bufferCopy = buffer;

         Monitor.Exitthis );

         return bufferCopy;
      }
      set
      {
         Monitor.Enterthis );
         if occupiedBufferCount == )
         {
            Console.WriteLine(Thread.CurrentThread.Name + " tries to write." );
            DisplayState"Buffer full. " + Thread.CurrentThread.Name + " waits." );
            Monitor.Waitthis );
         }
         buffer = value;

         ++occupiedBufferCount;

         DisplayStateThread.CurrentThread.Name + " writes " + buffer );
         Monitor.Pulsethis );

         Monitor.Exitthis );
      
   }

   public void DisplayStatestring operation )
   {
      Console.WriteLine"{0,-35}{1,-9}{2}\n",operation, buffer, occupiedBufferCount );
   }

   static void Mainstring[] args )
   {
      SynchronizedBuffer shared = new SynchronizedBuffer();
      Random random = new Random();

      Console.WriteLine"{0,-35}{1,-9}{2}\n","Operation""Buffer""Occupied Count" );
      shared.DisplayState"Initial state" );

      Producer producer = new Producershared, random );
      Consumer consumer = new Consumershared, random );

      Thread producerThread = new Threadnew ThreadStartproducer.Produce ) );
      producerThread.Name = "Producer";

      Thread consumerThread = new Threadnew ThreadStartconsumer.Consume ) );
      consumerThread.Name = "Consumer";

      producerThread.Start();
      consumerThread.Start();
   }
}

public class Consumer
{
   private SynchronizedBuffer sharedLocation;
   private Random randomSleepTime;

   public ConsumerSynchronizedBuffer shared, Random random )
   {
      sharedLocation = shared;
      randomSleepTime = random;
   }

   public void Consume()
   {
      int sum = 0;

      for int count = 1; count <= 10; count++ )
      {
         Thread.SleeprandomSleepTime.Next11001 ) );
         sum += sharedLocation.Buffer;
      }

      Console.WriteLine("{0} read values totaling: {1}.\nTerminating {0}.",Thread.CurrentThread.Name, sum );
   }
}

public class Producer 
{
   private SynchronizedBuffer sharedLocation;
   private Random randomSleepTime;

   public ProducerSynchronizedBuffer shared, Random random )
   {
      sharedLocation = shared;
      randomSleepTime = random;
   }
   public void Produce()
   {
      for int count = 1; count <= 10; count++ 
      {
         Thread.SleeprandomSleepTime.Next11001 ) );
         sharedLocation.Buffer = count; 
      }
      Console.WriteLine"{0} done producing.\nTerminating {0}.",Thread.CurrentThread.Name );
   }
}


           
       
Related examples in the same category
1. Producer and consumer with a Circular BufferProducer and consumer with a Circular Buffer
2. Uses Wait and Pulse to enable producer and consumer threads to cooperate in using a buffer
w__w__w_.j__a_va___2s_._c__o___m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.