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.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.