NewQueueListParams creates a new QueueListParams to return available queues sorted by time in ascending order, returning 100 jobs at most.
()
| 12 | // NewQueueListParams creates a new QueueListParams to return available queues |
| 13 | // sorted by time in ascending order, returning 100 jobs at most. |
| 14 | func NewQueueListParams() *QueueListParams { |
| 15 | return &QueueListParams{ |
| 16 | paginationCount: 100, |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func (p *QueueListParams) copy() *QueueListParams { |
| 21 | return &QueueListParams{ |
no outgoing calls
searching dependent graphs…