An open API service indexing awesome lists of open source software.

https://github.com/briandenicola/dapr-actor-example

A repo to Dapr's Virtual Actor Pattern
https://github.com/briandenicola/dapr-actor-example

actor-model dapr dapr-actor dotnet-core learning-by-doing

Last synced: 4 months ago
JSON representation

A repo to Dapr's Virtual Actor Pattern

Awesome Lists containing this project

README

          

First attempt at a Virtual Actor Pattern application

# Server
cd src/BankActor
dapr init
dapr run --dapr-http-port 3500 --app-id bank_actor --app-port 5010 dotnet run

# Client
cd src/Client
dotnet run