(job, fireDate, recurrenceRule, endDate)
| 13 | |
| 14 | /* Invocation object */ |
| 15 | function Invocation(job, fireDate, recurrenceRule, endDate) { |
| 16 | this.job = job; |
| 17 | this.fireDate = fireDate; |
| 18 | this.endDate = endDate; |
| 19 | this.recurrenceRule = recurrenceRule || DoesntRecur; |
| 20 | |
| 21 | this.timerID = null; |
| 22 | } |
| 23 | |
| 24 | function sorter(a, b) { |
| 25 | return (a.fireDate.getTime() - b.fireDate.getTime()); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…