Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Workflow docs for Java SDK #3662

Merged
merged 27 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0211dfe
scaffold out docs for workflow java sdk
hhunter-ms Aug 2, 2023
3fdf6d5
add java tabs
hhunter-ms Aug 2, 2023
51a97d8
start adding content for java how to
hhunter-ms Sep 12, 2023
e224ee7
Merge branch 'v1.12' into issue_3567
msfussell Sep 12, 2023
d030a7b
continue adding Java
hhunter-ms Sep 12, 2023
268a858
Merge branch 'issue_3567' of https://github.com/hhunter-ms/docs into …
hhunter-ms Sep 12, 2023
448d0de
add activities
hhunter-ms Sep 12, 2023
7a1b51b
add ref
hhunter-ms Sep 13, 2023
e9e0e75
update to beta1
hhunter-ms Sep 14, 2023
7ff09b5
add beta apis and move workflow to that table
hhunter-ms Sep 14, 2023
adbe4f7
link to lifecycles
hhunter-ms Sep 14, 2023
7186316
Merge branch 'v1.12' into issue_3567
hhunter-ms Sep 18, 2023
737c562
Merge branch 'v1.12' into issue_3567
hhunter-ms Sep 18, 2023
f476d57
Merge branch 'v1.12' into issue_3567
hhunter-ms Sep 18, 2023
f261ac5
updates from Ryan
hhunter-ms Sep 19, 2023
559d357
Merge branch 'issue_3567' of https://github.com/hhunter-ms/docs into …
hhunter-ms Sep 19, 2023
52ed2b6
update examples in how tos
hhunter-ms Sep 20, 2023
d3618b2
add workflow patterns
hhunter-ms Sep 20, 2023
ae71e14
nyemade limitation edit
hhunter-ms Sep 20, 2023
37e78d7
address all but one todo
hhunter-ms Sep 20, 2023
bac5957
dummy link for workflow package
hhunter-ms Sep 20, 2023
e3af25c
add java to quickstart
hhunter-ms Sep 20, 2023
cd472f1
fix localized link
hhunter-ms Sep 20, 2023
b06d0f2
removing some typos
hhunter-ms Sep 21, 2023
6b14399
add ryan review
hhunter-ms Sep 22, 2023
f3805f6
Merge branch 'v1.12' into issue_3567
hhunter-ms Sep 22, 2023
c905d41
Merge branch 'v1.12' into issue_3567
msfussell Sep 25, 2023
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 daprdocs/content/en/concepts/building-blocks-concept.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Dapr provides the following building blocks:
| [**Secrets**]({{< ref "secrets-overview.md" >}}) | `/v1.0/secrets` | Dapr provides a secrets building block API and integrates with secret stores such as public cloud stores, local stores and Kubernetes to store the secrets. Services can call the secrets API to retrieve secrets, for example to get a connection string to a database.
| [**Configuration**]({{< ref "configuration-api-overview.md" >}}) | `/v1.0/configuration` | The Configuration API enables you to retrieve and subscribe to application configuration items for supported configuration stores. This enables an application to retrieve specific configuration information, for example, at start up or when configuration changes are made in the store.
| [**Distributed lock**]({{< ref "distributed-lock-api-overview.md" >}}) | `/v1.0-alpha1/lock` | The distributed lock API enables you to take a lock on a resource so that multiple instances of an application can access the resource without conflicts and provide consistency guarantees.
| [**Workflows**]({{< ref "workflow-overview.md" >}}) | `/v1.0-alpha1/workflow` | The Workflow API enables you to define long running, persistent processes or data flows that span multiple microservices using Dapr workflows or workflow components. The Workflow API can be combined with other Dapr API building blocks. For example, a workflow can call another service with service invocation or retrieve secrets, providing flexibility and portability.
| [**Workflows**]({{< ref "workflow-overview.md" >}}) | `/v1.0-beta1/workflow` | The Workflow API enables you to define long running, persistent processes or data flows that span multiple microservices using Dapr workflows or workflow components. The Workflow API can be combined with other Dapr API building blocks. For example, a workflow can call another service with service invocation or retrieve secrets, providing flexibility and portability.
| [**Cryptography**]({{< ref "cryptography-overview.md" >}}) | `/v1.0-alpha1/crypto` | The Cryptography API enables you to perform cryptographic operations, such as encrypting and decrypting messages, without exposing keys to your application.
Loading
Loading