Producer/consumer : Producer Consumer « Thread « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
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
SQL Server / T-SQL Tutorial
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# / CSharp Tutorial » Thread » Producer Consumer 
20. 23. 2. Producer/consumer
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System.Threading;

public class MainClass
{
    private static Queue<string> sharedQueue = new Queue<string>();    
    public static void Main()
    {
        Thread t1 = new Thread(Producer);
        Thread t2 = new Thread(Consumer);
        t1.Start();
        t2.Start();

        // Join on them:
        t1.Join();
        t2.Join();
    }
    private static void Producer()
    {
        for (int i = 0; i < 2; i++)
        {
            string item = "Item#" + i;
            lock (sharedQueue)
            {
                sharedQueue.Enqueue(item);
                Monitor.Pulse(sharedQueue);
            }
        }
    }

    private static void Consumer()
    {
        for (int i = 0; i < 2; i++)
        {
            string item = null;
            lock (sharedQueue)
            {
                while (sharedQueue.Count == 0)
                    Monitor.Wait(sharedQueue);
                item = sharedQueue.Dequeue();
            }

            Console.WriteLine("Processing item: {0}", item);
        }
    }
}
Processing item: Item#0
Processing item: Item#1
20. 23. Producer Consumer
20. 23. 1. Producer and consumer
20. 23. 2. Producer/consumer
20. 23. 3. Consumer Producer with Monitor
20. 23. 4. Philosopher Example
w__ww.___ja__v_a2___s_.c__o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.