You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a weakly-typed proxy, it is your responsbility to define the correct actor method names and message types. This is done for you when using a strongly-typed proxy since the names and types are part of the interface definition.
94
+
When using a weakly-typed proxy, it is your responsibility to define the correct actor method names and message types. This is done for you when using a strongly-typed proxy since the names and types are part of the interface definition.
Copy file name to clipboardExpand all lines: daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The `ActorHost` is provided by the runtime and contains all of the state that th
26
26
27
27
### Using dependency injection
28
28
29
-
Actors support [depenendency injection](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection) of additonal parameters into the constructor. Any other parameters your define will have their values satisfied from the dependency injection container.
29
+
Actors support [depenendency injection](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection) of additional parameters into the constructor. Any other parameters your define will have their values satisfied from the dependency injection container.
@@ -56,7 +56,7 @@ public void ConfigureServices(IServiceCollection services)
56
56
57
57
Each actor instance has its own dependency injection scope. Each actor remains in memory for some time after performing an operation, and during that time the dependency injection scope associated with the actor is also considered live. The scope will be releases when the actor is deactivated.
58
58
59
-
If an actor injects an `IServiceProvider` in the constructor, the actor will recieve a reference to the `IServiceProvider` associated with its scope. The `IServiceProvider` can be used to resolve services dynamically in the future.
59
+
If an actor injects an `IServiceProvider` in the constructor, the actor will receive a reference to the `IServiceProvider` associated with its scope. The `IServiceProvider` can be used to resolve services dynamically in the future.
@@ -193,7 +193,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
193
193
}
194
194
```
195
195
196
-
The `UseRouting` and `UseEndpoints` calls are necessary to configure routing. Adding `MapActorsHandlers` inside the endpoint middleware is what configures actors as part of the pipline.
196
+
The `UseRouting` and `UseEndpoints` calls are necessary to configure routing. Adding `MapActorsHandlers` inside the endpoint middleware is what configures actors as part of the pipeline.
197
197
198
198
This is a minimal example, it's valid for Actors functionality to existing alongside:
Copy file name to clipboardExpand all lines: daprdocs/content/en/dotnet-sdk-docs/dotnet-troubleshooting/dotnet-troubleshooting-pubsub.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The most common problem with pub/sub is that the pub/sub endpoint in your applic
12
12
13
13
There are a few layers to this problem with different solutions:
14
14
15
-
- The application is not recieving any traffic from Dapr
15
+
- The application is not receiving any traffic from Dapr
16
16
- The application is not registering pub/sub endpoints with Dapr
17
17
- The pub/sub endpoints are registered with Dapr, but the request is not reaching the desired endpoint
18
18
@@ -81,7 +81,7 @@ Pay particular attention to the HTTP status code, and the JSON output.
81
81
A 200 status code indicates success.
82
82
83
83
84
-
The JSON blob that's included near the end is the output of `/dapr/subscribe` that's procesed by the Dapr runtime. In this case it's using the `ControllerSample` in this repo - so this is an example of correct output.
84
+
The JSON blob that's included near the end is the output of `/dapr/subscribe` that's processed by the Dapr runtime. In this case it's using the `ControllerSample` in this repo - so this is an example of correct output.
85
85
86
86
```json
87
87
[
@@ -120,7 +120,7 @@ app.UseEndpoints(endpoints =>
120
120
121
121
### Option 2: The response contained JSON but it was empty (like `[]`)
122
122
123
-
If the JSON output was an empty array (like `[]`) then the subcribe handler is registered, but no topic endpoints were registered.
123
+
If the JSON output was an empty array (like `[]`) then the subscribe handler is registered, but no topic endpoints were registered.
0 commit comments