-
Notifications
You must be signed in to change notification settings - Fork 768
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
why some method has no async callback parameter? #410
Comments
I think there are two explanations: The Async side of the library have not been prioritized, and a lack of interest, i.e. we only add the bits that people ask for. At the moment I'd rather not add more methods, but use a more "fluent" configuration:
There wouldn't be any Async, only the Actions that would be called would be async. The only method with Async in its name would be FireAsync. I gave it a go in PR #369, but haven't merged it yet, I'm not sure if I have time to support it. |
Maybe I can help develop stateless ? |
Sure thing! |
+1, I have need for PermitDynamicAsync on a project. Might look at submitting a PR, if I have some spare available time. |
I developed a similar project SMLite, which prove the perfect support asynchronous still can realize "fluent" configuration at the same time, perhaps can give you refer to |
Time is a limited resource :-) @aalivingston If you want to submit a PR then please feel free to do so! |
I find some method has no async callback parameter such as
PermitDynamic
,PermitDynamicIf
, etc. but some method has async callback parameter, such asOnEntryAsync
,OnEntryFromAsync
, etc.why no
PermitDynamicAsync
,PermitDynamicIfAsync
method to use?The text was updated successfully, but these errors were encountered: