Kyle Dodson
Kyle Dodson
> ... In my case I want to use _string_ instead of _Guid_, and take it from user's _Claims_ after authentication, not just doing _Guid.NewGuid()_. ... @Lanayx, with your custom...
In our application, we allow clients to subscribe to/unsubscribe from many topics/groups at any time. We initially thought about exploring how to wire up the middleware with a parameterized URL...
@henry-chris It sounds like you understand the need to build your own grouping infrastructure and some possible implementation ideas. Great! Next, expose a method to get the list of client...
I, too, am experiencing the installer immediately crashing on Windows 10. However, my Event Viewer log entry shows an error in "System.dll" as opposed to "ntdll.dll".
This is very similar to #55. We can support constructor injection of `ITransactionalState` mock objects by registering our own implementation of `IAttributeToFactoryMapper` in the silo's dependency injection container.
@erikljung Not directly. I have a branch that adds the needed support for constructor injection, but I've only applied it to the state facet interfaces/classes.
The TestKit does not currently support `GrainService`s, only `Grain`s. Perusing the abstract `GrainService` class and its base, abstract `SystemTarget` class, I'm not exactly sure what the TestKit could/would provide to...
We do _not_ provide a mock `Silo` (the `TestKitSilo` is a misnomer... it doesn't extend `Silo` or correlate to anything in the Orleans framework). I'd recommend testing `GrainService`s via `TestCluster`....
@TFarla I haven't added any helpers to the TestKit. However, you can still test grains that leverage the facet system with a little setup work. I added a unit test...
A PR would be awesome! One complexity with the state facets is that you may inject multiple, different instances. It would be great if that were accommodated.