| 69 | } |
| 70 | |
| 71 | void LimitedBandwidth::GetWaitObjects(WaitObjectContainer &container, const CallStack &callStack) |
| 72 | { |
| 73 | double nextTransceiveTime = TimeToNextTransceive(); |
| 74 | if (nextTransceiveTime) |
| 75 | container.ScheduleEvent(nextTransceiveTime, CallStack("LimitedBandwidth::GetWaitObjects()", &callStack)); |
| 76 | } |
| 77 | |
| 78 | // ************************************************************* |
| 79 |