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