public RetransmitterEntry(Retransmitter enclosingInstance, long low, long high, long[] intervals) : base(intervals)
 {
     this.enclosingInstance = enclosingInstance;
     this.low  = low;
     this.high = high;
     list      = new System.Collections.ArrayList();
     list.Add(low);
     list.Add(high);
 }
Exemple #2
0
 private void  InitBlock()
 {
     retransmitter = new Retransmitter(null, this);
 }