Multi Threading
Multi Threading
Abstract:
Multi Threading Concepts in DOT Net.Description:
To use the parent and child method for multi threading concepts.Code:
Imports System.Threading
Module MultiThreading
Public Buffer As Integer
Public BufferEmpty As Boolean = True
Public MonitorLock As Object = New Object()
Sub Producer()
Dim Value As Integer = 0
Do
Monitor.Enter(MonitorLock)
If (BufferEmpty) Then
BufferEmpty = False
Buffer = Value
If (Value = 0) Then
Value = 1
Else
Value = 0
End If
Console.WriteLine("Parent: " & Buffer)
End If
Monitor.Exit(MonitorLock)
Loop While (True)
End Sub
Sub Consumer()
Dim Value As Integer
Do
Monitor.Enter(MonitorLock)
If (Not BufferEmpty) Then
BufferEmpty = True
Thread.CurrentThread.Sleep(1000)
Value = Buffer
Console.WriteLine("Child: " & Value)
End If
Monitor.Exit(MonitorLock)
Loop While (True)
End Sub
Sub Main()
Dim ProducerThread As Thread
Dim ConsumerThread As Thread
ProducerThread = New Thread(AddressOf Producer)
ConsumerThread = New Thread(AddressOf Consumer)
ProducerThread.Start()
ConsumerThread.Start()
End Sub
End Module

I don't know how many times I have to ask you to format your resources. Please Post Full formatted resources.
++
Thanks and Regards
Meetu Choudhary
Site Coordinator.