Small actors fixes

This commit is contained in:
Aaron Crawfis 2020-10-15 15:01:16 -07:00
parent cda2949bf6
commit 1e0202a83e
2 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
---
type: docs
title: "Dapr actors overview"
linkTitle: "Dapr actors"
weight: 200
linkTitle: "Overview"
weight: 10
description: Overview of Dapr support for actors
---
The Dapr actors runtime provides following capabilities:
The Dapr actors runtime provides support for [virtual actors]({{< ref actors_background.md >}}) through following capabilities:
## Actor method invocation

View File

@ -1,8 +1,8 @@
---
type: docs
title: "Introduction to actors"
linkTitle: "Introduction to actors"
weight: 100
linkTitle: "Actors background"
weight: 20
description: Learn more about the actor pattern
---
@ -16,8 +16,8 @@ Dapr includes a runtime that specifically implements the [Virtual Actor pattern]
## Quick links
- [Dapr Actor Features](./actors_features.md)
- [Dapr Actor API Spec](../../reference/api/actors_api.md)
- [Dapr Actor Features]({{< actors-overview.md >}})
- [Dapr Actor API Spec]({{< actors_api.md >}} )
### When to use actors
@ -79,7 +79,7 @@ POST/GET/PUT/DELETE http://localhost:3500/v1.0/actors/<actorType>/<actorId>/<met
You can provide any data for the actor method in the request body, and the response for the request would be in the response body which is the data from actor call.
Refer to [Dapr Actor Features](./actors_features.md) for more details.
Refer to [Dapr Actor Features]({{< actors-overview.md >}}) for more details.
### Concurrency