Skip to content

Instantly share code, notes, and snippets.

@alecmce
Created August 24, 2011 07:59
Show Gist options
  • Save alecmce/1167531 to your computer and use it in GitHub Desktop.
Save alecmce/1167531 to your computer and use it in GitHub Desktop.
/**
* A ProcessStack is a utility that will wait run each process in order as added,
* running the subsequent process when it has completed
*/
public class InitProcess extends ProcessStack
{
public function InitProcess()
{
add(InitModelProcess);
add(InitViewProcess);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment