Java threading and concurrent programming practices----Synchronizer (Phaser)

Source: Internet
Author: User

The phaser is a more resilient synchronization barrier. As with the sync barrier, a phaser allows a group of threads to

The barrier waits until the last thread arrives and the threads continue to execute. Phaser also offers and barrier

Action-equivalent operation.

Unlike synchronization barriers, which have a fixed number of threads, a phaser can coordinate an indefinite number of threads, which

Threads can be registered at any time.

Example code:

The following example creates 3 threads, prints a few letters, but does not execute immediately after the thread is created, but in the main program

Control it, 3 seconds after all processes start executing simultaneously

import java.util.concurrent.phaser;public class mytest {public static void  Main (String[] args)  {phaser phaser = new phaser (3)  {//  a total of 3 worker threads, So assign a value of 3@overrideprotected boolean onadvance (Int phase, int registeredparties) in the constructor  {system.out.println ("\n========= Gorgeous split Line =============");return registeredparties == 0;}}; SYSTEM.OUT.PRINTLN ("program starts execution");char a =  ' a ';for  (int i = 0; i <  3; i++)  { //  Create and start 3 threads new mythread ((char)   (a + i),  phaser). Start ();} while  (!phaser.isterminated ())  {//  as long as Phaser does not end, the main thread loops to wait for Thread.yield ();} System.out.println ("End of Program");}} class mythread extends thread {private char c;private phaser phaser; Public mythread (Char c, phaser phaser)  {this.c = c;this.phaser =  Phaser;} @OVerridepublic void run ()  {while  (!phaser.isterminated ())  {for  (int i =  0; i < 10; i++)  { //  Print the current letter 10 times System.out.print (c +  "   ");}   After printing the current letter, update it to the third letter after it, such as B update to E, for the next stage of printing c =  (char)   (c + 3);if  (c >   ' z ')  {//  if the letter Z is exceeded, a thread is dynamically reduced in phaser and exits the loop ends this thread phaser.arriveandderegister ();  else {//  instead, wait for other threads to reach the end of the stage, then go together to the next stage phaser.arriveandawaitadvance ();}}}



Java threading and concurrent programming practices----Synchronizer (Phaser)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.