Get Thread status: start time, ID, Processor Time : Thread Status « Thread « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Thread » Thread StatusScreenshots 
Get Thread status: start time, ID, Processor Time
Get Thread status: start time, ID, Processor Time

Imports System.Threading

Public Class MainClass
   Shared Dim As Thread = New Thread(AddressOf MethodA)
   Shared Dim As Thread = New Thread(AddressOf MethodB)
   Shared Dim As Thread = New Thread(AddressOf MethodC)

   Public Shared Sub Main()

        A.Name = "A"
        A.Start()

        B.Name = "B"
        B.Start()

        C.Name = "C"
        C.Start()



        Dim List As  System.Diagnostics.ProcessThreadCollection

        List =  System.Diagnostics.Process.GetCurrentProcess().Threads()

        Dim objThread As  System.Diagnostics.ProcessThread

        Console.WriteLine()
        For Each objThread In List
            Console.Write("Thread: {0:D5}", objThread.Id)
            Console.Write(" Start: {0}", objThread.StartTime)
            Console.WriteLine(" CPU Time: {0}", objThread.TotalProcessorTime)
            Console.Write(" State: {0}", objThread.ThreadState)
            If (objThread.ThreadState = System.Diagnostics.ThreadState.WaitThen
                Console.Write("Reason: {0}", objThread.WaitReason())
            End If
            Console.WriteLine(" Address: {0}", objThread.StartAddress())
            Console.WriteLine()
        Next



   End Sub

   Shared Sub MethodA()
        Dim As Integer

        B.Join()

        For I = To 250
            System.Console.Write("A")
        Next
    End Sub

    Shared Sub MethodB()
        Dim As Integer

        For I = To 250
            System.Console.Write("B")
        Next
    End Sub

    Shared Sub MethodC()
        Dim As Integer

        For I = To 250
            System.Console.Write("C")
        Next
    End Sub
End Class 

           
       
Related examples in the same category
w__w__w._j_av__a__2_s__.__co__m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.