Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/go/batch/job-handler.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: "Reference for Nitric's Go library - Register a job handler to with the Nitric Go SDK"
---

# Go - job.handler()
# Go - Job.Handler()

Job handlers are the code that is run when a job request is submitted. These handlers should be written in a separate file to your services.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/go/batch/job-submit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: "Reference for Nitric's Go library - Submit a batch job request with the Nitric Go SDK"
---

# Go - job.submit()
# Go - Job.Submit()

Jobs may be submitted from Nitric `services` or other `batches` using the `submit` method on the job reference. When submitting a job you can provide a payload that will be passed to the job handler function.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/go/batch/job.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: "Reference for Nitric's Go library - Create Batch Jobs with the Nitric Go SDK"
---

# Go - job()
# Go - NewJob()

Creates a new Batch Job.

Expand Down
17 changes: 17 additions & 0 deletions src/config/reference/dart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,23 @@ export const DartReference: NavGroup = {
},
],
},
{
title: 'Batch',
items: [
{
title: 'job()',
href: '/reference/dart/batch/job',
},
{
title: 'job.handler()',
href: '/reference/dart/batch/job-handler',
},
{
title: 'job.submit()',
href: '/reference/dart/batch/job-submit',
},
],
},
{
title: 'Key Value Stores',
items: [
Expand Down
17 changes: 17 additions & 0 deletions src/config/reference/go.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export const GoReference: NavGroup = {
title: 'NewApi()',
href: '/reference/go/api/api',
},
{
title: 'NewJob()',
href: '/reference/go/batch/job',
},
{
title: 'NewKv()',
href: '/reference/go/keyvalue/keyvalue',
Expand Down Expand Up @@ -101,6 +105,19 @@ export const GoReference: NavGroup = {
},
],
},
{
title: 'Batch',
items: [
{
title: 'Job.Handler()',
href: '/reference/go/batch/job-handler',
},
{
title: 'Job.Submit()',
href: '/reference/go/batch/job-submit',
},
],
},
{
title: 'Key Value Stores',
items: [
Expand Down
17 changes: 17 additions & 0 deletions src/config/reference/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,23 @@ export const NodeReference: NavGroup = {
},
],
},
{
title: 'Batch',
items: [
{
title: 'job()',
href: '/reference/nodejs/batch/job',
},
{
title: 'job.handler()',
href: '/reference/nodejs/batch/job-handler',
},
{
title: 'job.submit()',
href: '/reference/nodejs/batch/job-submit',
},
],
},
{
title: 'HTTP',
items: [
Expand Down
43 changes: 30 additions & 13 deletions src/config/reference/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,23 @@ export const PyReference: NavGroup = {
},
],
},
{
title: 'Batch',
items: [
{
title: 'job()',
href: '/reference/python/batch/job',
},
{
title: 'job.handler()',
href: '/reference/python/batch/job-handler',
},
{
title: 'job.submit()',
href: '/reference/python/batch/job-submit',
},
],
},
{
title: 'Key Value Stores',
items: [
Expand All @@ -72,19 +89,6 @@ export const PyReference: NavGroup = {
},
],
},
{
title: 'Sql',
items: [
{
title: 'sql()',
href: '/reference/python/sql/sql',
},
{
title: 'sql.connection_string()',
href: '/reference/python/sql/sql-connection-string',
},
],
},
{
title: 'Topics',
items: [
Expand Down Expand Up @@ -185,6 +189,19 @@ export const PyReference: NavGroup = {
},
],
},
{
title: 'SQL',
items: [
{
title: 'sql()',
href: '/reference/python/sql/sql',
},
{
title: 'sql.connection_string()',
href: '/reference/python/sql/sql-connection-string',
},
],
},
{
title: 'Schedules',
items: [
Expand Down
Loading