Len returns the current number of timer objects in the queue.
()
| 35 | |
| 36 | // Len returns the current number of timer objects in the queue. |
| 37 | func (q *Queue) Len() int { |
| 38 | return len(q.heap) |
| 39 | } |
| 40 | |
| 41 | // Schedule schedules a timer for exectuion at time tm. If the |
| 42 | // timer was already scheduled, it is rescheduled. |
no outgoing calls