Ejemplo n.º 1
0
 /// <summary>
 /// Add the given step to the list.
 /// </summary>
 public void Add(DalvikStep step)
 {
     lock (dataLock)
     {
         steps.Add(step.RequestId, step);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Add the given step to the list.
 /// </summary>
 public void Add(DalvikStep step)
 {
     lock (dataLock)
     {
         steps.Add(step.RequestId, step);
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Add the given step to the list.
 /// </summary>
 public void Add(DalvikStep step)
 {
     steps.TryAdd(step.RequestId, step);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Add the given step to the list.
 /// </summary>
 public void Add(DalvikStep step)
 {
     steps.TryAdd(step.RequestId, step);
 }