Skip to main content

ASP.NET Core–Use dynamic proxy with standard dependency injection - Async

Yesterday I blogged about using Castle.DynamicProxy to generate a proxy class and use AOP techniques for caching. The code I showed worked for synchronous method calls but fails when you want to proxy async method calls.

Let’s see how we can get this working for async…

Here is the async version of our repository:

public interface IAsyncProductRepository
{
Task<IList<Product>> GetAll();
}

We need an extra NuGet package:

dotnet add Castle.Core.AsyncInterceptor

Now we have to change our interceptor to call a second async interceptor:

public class AsyncCacheInterceptor : AsyncInterceptorBase
{
private readonly IMemoryCache _cache;
public AsyncCacheInterceptor(IMemoryCache cache)
{
_cache = cache;
}
protected override async Task InterceptAsync(IInvocation invocation, Func<IInvocation, Task> proceed)
{
//Nothing to cache here --> method that returns a task has no return value
await proceed(invocation).ConfigureAwait(false);
}
protected override async Task<TResult> InterceptAsync<TResult>(IInvocation invocation, Func<IInvocation, Task<TResult>> proceed)
{
var name = $"{invocation.Method.DeclaringType}_{invocation.Method.Name}";
var args = string.Join(", ", invocation.Arguments.Select(a => (a ?? "").ToString()));
var cacheKey = $"{name}|{args}";
if (!_cache.TryGetValue(cacheKey, out TResult returnValue))
{
returnValue = await proceed(invocation).ConfigureAwait(false);
_cache.Set(cacheKey, returnValue);
}
return returnValue;
}
}
public class CacheInterceptor : IInterceptor
{
private readonly AsyncCacheInterceptor _asyncInterceptor;
public CacheInterceptor(AsyncCacheInterceptor asyncInterceptor)
{
_asyncInterceptor = asyncInterceptor;
}
public void Intercept(IInvocation invocation)
{
_asyncInterceptor.ToInterceptor().Intercept(invocation);
}
}

Our extension method that triggers the proxy creation remains the same:

public static class ServicesExtensions {
public static void AddProxiedScoped<TInterface, TImplementation>(this IServiceCollection services)
where TInterface : class
where TImplementation : class, TInterface
{
services.AddScoped<TImplementation>();
services.AddScoped(typeof(TInterface), serviceProvider =>
{
var proxyGenerator = serviceProvider.GetRequiredService<ProxyGenerator>();
var actual = serviceProvider.GetRequiredService<TImplementation>();
var interceptors = serviceProvider.GetServices<IInterceptor>().ToArray();
return proxyGenerator.CreateInterfaceProxyWithTarget(typeof(TInterface), actual, interceptors);
});
}
}

Our registration code should be extended to register the async interceptor as well:

services.AddSingleton(new ProxyGenerator());
services.AddScoped<IInterceptor, CacheInterceptor>();
services.AddScoped<AsyncCacheInterceptor>();
services.AddMemoryCache();
services.AddProxiedScoped<IAsyncProductRepository, ProductRepository>();

Popular posts from this blog

Kubernetes–Limit your environmental impact

Reducing the carbon footprint and CO2 emission of our (cloud) workloads, is a responsibility of all of us. If you are running a Kubernetes cluster, have a look at Kube-Green . kube-green is a simple Kubernetes operator that automatically shuts down (some of) your pods when you don't need them. A single pod produces about 11 Kg CO2eq per year( here the calculation). Reason enough to give it a try! Installing kube-green in your cluster The easiest way to install the operator in your cluster is through kubectl. We first need to install a cert-manager: kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml Remark: Wait a minute before you continue as it can take some time before the cert-manager is up & running inside your cluster. Now we can install the kube-green operator: kubectl apply -f https://github.com/kube-green/kube-green/releases/latest/download/kube-green.yaml Now in the namespace where we want t...

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

DevToys–A swiss army knife for developers

As a developer there are a lot of small tasks you need to do as part of your coding, debugging and testing activities.  DevToys is an offline windows app that tries to help you with these tasks. Instead of using different websites you get a fully offline experience offering help for a large list of tasks. Many tools are available. Here is the current list: Converters JSON <> YAML Timestamp Number Base Cron Parser Encoders / Decoders HTML URL Base64 Text & Image GZip JWT Decoder Formatters JSON SQL XML Generators Hash (MD5, SHA1, SHA256, SHA512) UUID 1 and 4 Lorem Ipsum Checksum Text Escape / Unescape Inspector & Case Converter Regex Tester Text Comparer XML Validator Markdown Preview Graphic Col...