You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/java-sdk-docs/java-jobs/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,5 +3,5 @@ type: docs
3
3
title: "Jobs"
4
4
linkTitle: "Jobs"
5
5
weight: 3000
6
-
description: With the Dapr Job package, you can interact with the Dapr Job APIs from a Java application to trigger future operations to run according to a predefined schedule with an optional payload. To get started, walk through the [Dapr Jobs]({{< ref java-jobs-howto.md >}}) how-to guide.
6
+
description: With the Dapr Jobs package, you can interact with the Dapr Jobs APIs from a Java application to trigger future operations to run according to a predefined schedule with an optional payload. To get started, walk through the [Dapr Jobs]({{< ref java-jobs-howto.md >}}) how-to guide.
Copy file name to clipboardExpand all lines: daprdocs/content/en/java-sdk-docs/java-jobs/java-jobs-howto.md
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@ description: How to get up and running with Jobs using the Dapr Java SDK
7
7
---
8
8
9
9
As part of this demonstration we will schedule a Dapr Job. The scheduled job will trigger an endpoint registered in the
10
-
same app. With the [provided jobs example](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/jobs), you will:
10
+
same app. With the [provided jobs example](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/jobs), you will:
11
11
12
12
- Schedule a Job [Job scheduling example](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/jobs/DemoJobsClient.java)
13
-
- Register an endpoint for the Jobs runtime to invoke as part of the schedule[Endpoint Registration](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/jobs/DemoJobsSpringApplication.java)
13
+
- Register an endpoint for the dapr sidecar to invoke at trigger time[Endpoint Registration](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/jobs/DemoJobsSpringApplication.java)
14
14
15
15
This example uses the default configuration from `dapr init` in [self-hosted mode](https://github.com/dapr/cli#install-dapr-on-your-local-machine-self-hosted).
16
16
@@ -25,43 +25,43 @@ This example uses the default configuration from `dapr init` in [self-hosted mod
25
25
26
26
## Set up the environment
27
27
28
-
Clone the [Java SDK repo](https://github.com/dapr/java-sdk)and navigate into it.
28
+
Clone the [Java SDK repo](https://github.com/dapr/java-sdk) and navigate into it.
0 commit comments