samuelpsfung
samuelpsfung
Hi, I don't fully understand your above discussion, and I'm not sure if below is a novel idea... I observe that the implementation of `IAsyncInterceptor` requires some boilerplate codes, and...
About my last comment, I just discover that `AsyncInterceptorBase` does the same thing. Can it also intercept sync methods? `InterceptSynchronous()` is not virtual, how can a subclass handle sync interception...
Hi @JSkimming This [comment](https://github.com/JSkimming/Castle.Core.AsyncInterceptor/pull/54#issuecomment-480953342) says using `AsyncInterceptorBase` for sync interception is unsafe. While it is safe for async interception, right? Then I don't understand why you think `AsyncInterceptorBase` is a...