Fixed typos (#159)

This commit is contained in:
Michiel van Oudheusden 2019-10-18 11:39:20 +02:00 committed by Aman Bhardwaj
parent 4dc9995fc5
commit 310873f3f6
1 changed files with 4 additions and 5 deletions

View File

@ -31,7 +31,7 @@ POST/PUT http://localhost:3500/v1.0/actors/<actorType>/<actorId>/state
### Retrieve the Actor State ### Retrieve the Actor State
Once you have saved the actor state, you can retrived the saved state by calling Once you have saved the actor state, you can retrieve the saved state by calling
``` ```
GET http://localhost:3500/v1.0/actors/<actorType>/<actorId>/state/<key> GET http://localhost:3500/v1.0/actors/<actorType>/<actorId>/state/<key>
@ -52,8 +52,7 @@ Actors can schedule periodic work on themselves by registering either timers or
### Actor timers ### Actor timers
You can register a callback on actor to be executed based on You can register a callback on actor to be executed based on timer.
timer.
Dapr Actor runtime ensures that the callback methods respect the turn-based concurrency guarantees.This means that no other actor methods or timer/reminder callbacks will be in progress until this callback completes execution. Dapr Actor runtime ensures that the callback methods respect the turn-based concurrency guarantees.This means that no other actor methods or timer/reminder callbacks will be in progress until this callback completes execution.
@ -86,7 +85,7 @@ Reminders are a mechanism to trigger persistent callbacks on an actor at specifi
You can create a persistent reminder for an actor by calling the Http/gRPC request to Darp. You can create a persistent reminder for an actor by calling the Http/gRPC request to Darp.
``` ```
POST,PUT POST,PUT http://localhost:3500/v1.0/actors/<actorType>/<actorId>/reminders/<name> POST,PUT http://localhost:3500/v1.0/actors/<actorType>/<actorId>/reminders/<name>
``` ```
You can provide the reminder due time and period in the request body. You can provide the reminder due time and period in the request body.