Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
public void myStep() {
	fork("a", "b", "c");
}

public void a() {
     	// do something slow...
}     

public void b() {
     	// do something slow...
}     

public void c() {
     	// do something slow...
}     

Synchronization

Synchronize two parallel threads of execution.

...