(stats *jobstats.JobStatistics)
| 71 | } |
| 72 | |
| 73 | func jobStatisticsFromInternal(stats *jobstats.JobStatistics) *JobStatistics { |
| 74 | return &JobStatistics{ |
| 75 | CompleteDuration: stats.CompleteDuration, |
| 76 | QueueWaitDuration: stats.QueueWaitDuration, |
| 77 | RunDuration: stats.RunDuration, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // eventSubscription is an active subscription for events being produced by a |
| 82 | // client, created with Client.Subscribe. |
no outgoing calls
searching dependent graphs…