* the submission time stamp of the job
*/
public void registerJob(final ExecutionGraph executionGraph, final boolean profilingAvailable,
final long submissionTimestamp) {
final Iterator<ExecutionVertex> it = new ExecutionGraphIterator(executionGraph, true);
while (it.hasNext()) {
final ExecutionVertex vertex = it.next();
// Register the listener object which will pass state changes on to the collector
vertex.registerExecutionListener(new ExecutionListenerWrapper(this, vertex));
// Register the listener object which will pass assignment changes on to the collector