MCPcopy Index your code
hub / github.com/riverqueue/river / NewQueueListParams

Function NewQueueListParams

queue_list_params.go:14–18  ·  view source on GitHub ↗

NewQueueListParams creates a new QueueListParams to return available queues sorted by time in ascending order, returning 100 jobs at most.

()

Source from the content-addressed store, hash-verified

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

Callers 5

ExerciseClientFunction · 0.92
Test_Client_QueueListFunction · 0.85
Test_Client_QueueListTxFunction · 0.85
QueueListMethod · 0.85
QueueListTxMethod · 0.85

Calls

no outgoing calls

Tested by 3

ExerciseClientFunction · 0.74
Test_Client_QueueListFunction · 0.68
Test_Client_QueueListTxFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…