dotnet-sdk/examples
Whit Waldo c94b61e0d6
Fix for Jobs mapping handler (#1474)
Tweaked the jobs mapping handler to accept an optional timeout parameter instead of a cancellation token. This applies the timeout, if specified, to each invocation instead of as a global timeout.

---------

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
2025-02-26 03:40:58 -06:00
..
AI/ConversationalAI Conversation builder consistency changes (#1423) 2024-12-11 13:42:23 -06:00
Actor Remove unused variables (#1314) 2024-10-24 15:27:39 -05:00
AspNetCore Remove unused using statements. (#1313) 2024-10-24 17:00:09 -05:00
Client Simplfying Crypto example (#1442) 2025-01-14 17:38:28 -06:00
GeneratedActor FIX: Actor source generator generates invalid code for generic interfaces (#1419) 2024-12-05 11:36:45 -06:00
Jobs/JobsSample Fix for Jobs mapping handler (#1474) 2025-02-26 03:40:58 -06:00
Workflow Adds workflow replay-safe logger (#1434) 2024-12-19 16:23:46 -06:00
.editorconfig SDK Docs (#572) 2021-02-16 22:15:33 -08:00
Directory.Build.props SDK Docs (#572) 2021-02-16 22:15:33 -08:00
README.md Additional API surface area for Dapr Workflow authoring SDK (#1012) 2023-01-24 15:41:56 -08:00

README.md

Dapr .NET Core examples

This repository contains a samples that highlight the Dapr .NET SDK capabilities:

Sample Description
1. Client The client example shows how to make Dapr calls to publish events, save state, get state and delete state using a Dapr client.
2. Actor Demonstrates creating virtual actors that encapsulate code and state.
3. ASP.NET Core Demonstrates ASP.NET Core integration with Dapr by creating Controllers and Routes.
4. Workflow Demonstrates creating durable, long-running Dapr workflows using code.