Commit Graph

30 Commits

Author SHA1 Message Date
Phillip Hoff 2849ec6341
Add RELEASE doc. (#1433)
Signed-off-by: Phillip Hoff <phillip@orst.edu>
2024-12-17 18:47:53 -06:00
Aaron Crawfis eb568116e5
SDK Docs (#572)
* Setup dapr docs content

* Update SDK docs for new format

* Update daprdocs/content/en/dotnet-sdk-contributing/dotnet-contributing.md

Co-authored-by: Ryan Nowak <nowakra@gmail.com>

* Update daprdocs/content/en/dotnet-sdk-contributing/dotnet-contributing.md

Co-authored-by: Ryan Nowak <nowakra@gmail.com>

* Update python reference

* Update samples to examples

* Update layout

* Update prereqs

* Apply correct branding for .NET Core vs .NET

* Update examples/Client/StateManagement/README.md

* fix solution file

Co-authored-by: Ryan Nowak <nowakra@gmail.com>
2021-02-16 22:15:33 -08:00
vinayada1 a2ed096b79
API to set DAPR_API_TOKEN (#558)
* API to set DAPR_API_TOKEN

Co-authored-by: Ryan Nowak <nowakra@gmail.com>
2021-01-27 13:39:44 -08:00
Ryan Nowak 02ddbdf3cd
Add troubleshooting guide for pub/sub (#547) 2021-01-20 11:25:49 -08:00
Ryan Nowak f6aec35b9b
Add HttpClient support for Dapr service invocation (#544)
- Adds a new message handler for HttpClient interop
- Adds an easy way to create HttpClient instances
- A bunch of sample cleanup/polish/simplification

The main thing here is the added ability to interop with HttpClient. We'll be making some future changes to the service invocation APIs in DaprClient to address dapr/dapr#2342 since that issues greatly simplifies the interface we're dealing with.

Fixes: #526
2021-01-17 16:22:45 -08:00
Ryan Nowak 3a03ada243
Use Startup to register Actors (#533)
Fixes: #434

This change introduces new APIs for registering Actors DI and with
the HTTP pipeline based on the ASP.NET Core Startup.cs model. This
replaces `UseActors()` in Program.cs and delivers better integration
between the ASP.NET Core framework and Actors.

The bug that motivated this change was that the actors HTTP handlers
were separate from the application's main routing table. This meant that
certain routing patterns were totally broken (such as Blazor Server)
when used in the same project as actors. There was no real way to fix
this without a change in how we register the framework to make it more
consistent with other features that build on ASP.NET Core.
2021-01-08 11:30:07 -08:00
vinayada1 c650955f75
rename InvokeAsync to InvokeMethodAsync (#529) 2021-01-05 13:41:41 -08:00
vinayada1 39c6d8ca7d
Merge release-1.0.0 into master (#518)
* update proto files (#507)

* fix samples (#509)

* fix docs (#515)
2020-12-18 11:12:39 -08:00
Ryan Nowak 490e522716
Update actor docs for 0.12 changes (#501)
Co-authored-by: vinayada1 <28875764+vinayada1@users.noreply.github.com>
2020-12-18 10:37:05 -08:00
Aaron Crawfis e79cc88dbd Update Dapr docs links 2020-10-23 11:32:11 -07:00
Aman Bhardwaj 845a982648
update docs for arg changes in cli (#367) 2020-08-10 13:10:04 -07:00
wdjhu ff0ead390a
Improved Getting started with Actors document (#319)
* added missing dapr port parameter
added version number to 'add package' calls

* Calculator Sample

* Revert "Calculator Sample"

This reverts commit ec4b7af03b.

* add missing hyphen on port param

Co-authored-by: Garret Magin <garretm@microsoft.com>

* removed dll from `dotnet run` call

* updated version to `0.9.0-preview01`

* added note to use latest nuget version

Co-authored-by: Nico Meisenzahl <nico@meisenzahl.org>
Co-authored-by: André Ratzenberger <andre.ratzenberger@whiteduck.de>
Co-authored-by: Garret Magin <garretm@microsoft.com>
2020-08-03 08:58:54 -07:00
Tom Kerkhove c1b8c5d14c
Improve formatting (#352) 2020-07-30 11:07:35 -07:00
Lars Gyrup Brink Nielsen e8ffceacb9
docs: correct actor method names in get started guide (#335)
Co-authored-by: Aman Bhardwaj <amanbha@users.noreply.github.com>
2020-06-15 12:32:25 -07:00
Lars Gyrup Brink Nielsen 9f7b2591b7
docs: fix InvokeAsync example in get started guide (#333)
Add generic request type to `InvokeAsync` command.

Co-authored-by: Aman Bhardwaj <amanbha@users.noreply.github.com>
2020-06-15 12:12:57 -07:00
Lars Gyrup Brink Nielsen 7d2efdb1da
docs: correct typo (#331)
serialziable -> serializable
2020-06-15 12:10:33 -07:00
Garret Magin 317aa4ff99
Update documentation to specify framework version on creation (#324)
- Explicitly specify netcoreapp3.1 on project creation
- Remove documentation section on updating to netcoreapp3.0 which is obsolte
- Fix missing using statements in MyActoreService code updates
2020-06-08 12:00:33 -07:00
Leon Mai d8b5f77a81
Document + example for ConfigureActorSettings() (#276)
* #275 document + example for ConfigureActorSettings()

* make bold

Co-authored-by: LM <lemai>
Co-authored-by: Aman Bhardwaj <amanbha@users.noreply.github.com>
2020-03-31 15:46:16 -07:00
Phillip Hoff 916d552279 Allow explicit actor type (#165)
* Refactored ActorRuntime to allow testing.

* Add test for inferred actor type.

* Add RegisterActor() overload.

* Consolidate RegisterActor() implementations.

* Refactor to make type still intrinsic to actor implementation.

* Update docs.

* Revert error codes change.

* Updates per PR feedback.

* Add warning to ActorRuntime constructor.
2019-11-25 09:30:18 -08:00
Greg Ingram 3a7a19c9b1 Edit JSON to uppercase (#168)
* Edit JSON to uppercase

* Updated a few more
2019-11-21 18:01:06 -08:00
Greg Ingram c48a3c814f Capitalize Dapr throughout comments (#161) 2019-11-18 17:35:32 -08:00
Aman Bhardwaj 0dd842df86
updating the reminder code snippet 2019-10-28 11:44:19 -07:00
Jim Paine d50e525cc9 Updated docs for .NET Actor (#115)
* add missing dir change

* standardized actor namespace

Brought dotnet new command example inline with namespace and dapr run command

* Added startup.cs

Show example startup.cs without all the MVC defaults from dotnet new

* update class lib to 3.0

by default dotnet new classlib uses standard 2.0 all Dapr.Actors targets netcoreapp3.0
2019-10-19 13:31:27 -07:00
Aman Bhardwaj 4fb29e44e3
Changing to Dapr.* (#89)
* Changing to Dapr.*

* Update readme.md

* keeping things signed
2019-10-11 13:42:30 -07:00
Young Bu Park eb9257cdc7 Change the http app channel port env var to DAPR_HTTP_PORT (#79) 2019-10-07 20:33:13 -07:00
Aman Bhardwaj a0e1b3963c
Updating get started and samples readme (#70)
* Updating actors get started.

* Updating .netcore version in prereq

* REmoving specific versions of nugets from doc

* Updating samples readme.md to use dapr

* Updating sample docs

* Updating samples readme.

* renaming action to dapr
2019-10-07 19:14:29 +00:00
Aman Bhardwaj b92179778c
Renaming Actions to Dapr. (#63)
* Renaming Actions to Dapr.

* Updaing docs.

* Renaming more stuff
2019-10-02 15:55:24 -07:00
Young Bu Park 9716df49a8
Use valid nuget version in doc (#48) 2019-09-04 10:46:34 -07:00
Young Bu Park a440c77c1d Revise Run Actor section (#40) 2019-08-31 20:13:42 -07:00
Young Bu Park a3cd6ea891
Initial commit of Actions DotNet SDK doc (#28)
* Initial commit of README.md
* Initial commit of "Getting started with Action actor" doc
2019-08-29 12:38:27 -07:00