示例#1
0
            protected internal virtual void RegisterProcessorCount(StageExecution execution)
            {
                IDictionary <string, int> byStage = new Dictionary <string, int>();

                Processors[execution.Name()] = byStage;
//JAVA TO C# CONVERTER WARNING: Java wildcard generics have no direct equivalent in .NET:
//ORIGINAL LINE: for (Step<?> step : execution.steps())
                foreach (Step <object> step in execution.Steps())
                {
                    byStage[step.Name()] = step.Processors(0);
                }
            }
示例#2
0
 public override void Start(StageExecution execution)
 {
     @out.println(execution.Name() + ", started " + date());
     _lastProgress = 0;
 }