Concurrency
interface WorkerMetadata {
opts?: {
concurrency?: number;
// .. more options
}
// .. more options
}curl --location 'http://localhost:8080/workers' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer 1234' \
--data '{
"queue": "my-test-queue",
"opts": {
"concurrency": 50
},
"endpoint": {
"url": "http://mydomain.dev",
"method": "post"
}
}'Last updated