-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Safe execute method #812
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
Safe execute method #812
Conversation
Hi, thanks for you PR. There are use-cases where it's valid to silently catch exceptions, but not in the reactive system. |
I have some problem in my project when i don't handle exception in some reactive system. |
Ah, I understand now. It's not catching the exception, it just prevents the followup exception |
Thanks for you work! |
@sschmid Is that possible to implement this similar feature without using any Exception Handling statements (try-finally for this PR)? From what I understand, it will have performance penalty when using Exception Handling statements. |
@optimisez It low cost operation. For my project thar solve many problem for debugging and handle exception. In the world-wide we may find many tests for using try-finally blocks. |
No description provided.