Beispiel #1
0
 public void InitScheduleMethod(SimulationCarrier carrier, DLCarrierTag tag, SchedulePolicy policy)
 {
     this.m_currentCarrier = carrier;
     this.tag = tag;
     this.policy = policy;
     this.method = AllotMethodFactory.CreateAllotMethod(carrier.IsDlIcicOn);
     this.method.InitAllotMethod(carrier, tag);
 }
Beispiel #2
0
 private void InitTag(SimulationCarrier carrier)
 {
     DLCarrierTag tag = new DLCarrierTag();
     tag.InitCarrierTag(carrier, carrier.SchedulePolicy);
     carrier.DLScheduleCarrierTag = tag;
     this.InitUserTag(carrier.DlUserList);
 }
Beispiel #3
0
 public void InitAllotMethod(SimulationCarrier carrier, DLCarrierTag carrierTag)
 {
     this.carrier = carrier;
     this.carrierTag = carrierTag;
 }