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