-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed sealed
keyword
#92
Labels
Comments
@jkonecki-techfabric Sounds fine to me. But is I believe the last release process ran fully automated. Publishing a new version on NuGet should be as simple as tagging the desired commit after the PR is merged. |
jkonecki
added a commit
that referenced
this issue
Jul 3, 2020
seniorquico
added a commit
that referenced
this issue
Jul 3, 2020
Extended configuration to allow customization of storage. #92
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Several key classes (
StorageManager
,TestStorage
,TestKitSilo
) are marked assealed
.This means their behaviour cannot be customized.
I'm currently using a storage provider and grains that are event-sourced, and need custom behaviour around state handling (state is not just a single object, it's a stream of events). I also want to allow for richer tests when reading / writing state.
The alternative is to fork the whole project, wchich I would like to avoid.
Would you please consider dropping
sealed
keywords? I'm happy to make a PR.It's a bit urgent for me, so would hugely appreciate your response.
The text was updated successfully, but these errors were encountered: