1 / 9

dot net course in chennai

Some of the companies that use DOT NET are Microsoft, Deloitte, HP, MySpace, AT&T, Verizon, Intel and Bank of America among others. All these popular and commonly used websites making use of the DOT NET technology only goes on to show the power of DOT NET framework.<br><br>The .NET framework has a set of libraries supporting many languages such as Visual Basic, C# and many others. Since it is supported by Microsoft, they provide many updated applications to integrate the framework. This helps in building dynamically alluring web pages with more efficiency and with stability and in an economical manner.

vikram99723
Télécharger la présentation

dot net course in chennai

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DOT NET COURSE IN CHENNAI BY Accordittraining.com

  2. DOT NET- MULTI THREADING Topics: • Multi Threading • Creating Thread • Thread Life Cycle • Thread Priority

  3. WHAT IS AN MULTI THREADING • A thread is defined as the execution path of a program. Each thread • defines a unique flow of control. • If your application involves complicated and time consuming operations • such as database access or some intense I/O operations. • Then it is often helpful to set different execution paths or threads, with • each thread performing a particular job. • Creating a variable of the System.Threading.Thread type allows you to • create a new thread to start working with.

  4. CREATING THREAD • A thread is created by creating a Thread object, giving its constructor a • ThreadStartreference. • ThreadStartchildthreat=newThreadStart(childthreadcall);

  5. THREAD LIFE CYCLE • The life cycle of a thread starts when an object of the System. • Threading.Threadclass is created and ends when the thread is • terminated or completes execution. Following are the various states in the life cycle of a thread: The Unstarted State : It is the situation when the instance of the thread is created but the Start method is not called. The Ready State : It is the situation when the thread is ready to execute and waiting CPU cycle.

  6. CONTD….. • The Not Runnable State : a thread is not runnable, when: • Sleep method has been called • Wait method has been called • Blocked by I/O operations • The Dead State : It is the situation when the thread has completed • execution or has been aborted.

  7. THREAD PRIORITY • The Priority property of the Thread class specifies the priority of one • thread with respect to other. The .NET runtime selects the ready thread • with the highest priority. • The priorities could be categorized as: • Above normal • Below normal • Highest • Lowest • Normal

  8. CONTD…. • Once a thread is created, its priority is set using the Priority property of • the thread class. • NewThread.Priority=ThreadPriority.Highest;

  9. Contact us www.accordittraining.com EMAIL: enquiry@accordittraining.com CALL US (+91) 994 028 9059

More Related