dotnet/orleans

Extending AddGrainCallFilter to define interface to intercept.

Open

#3,480 创建于 2017年10月2日

在 GitHub 查看
 (4 评论) (1 反应) (1 负责人)C# (2,123 fork)batch import
area-grainsenhancementhelp wanted

仓库指标

Star
 (10,777 star)
PR 合并指标
 (平均合并 2天 2小时) (30 天内合并 64 个 PR)

描述

Would it be possible to extend AddGrainCallFilter so that along with the IGrainCallFilter one could also specify the interface to intercept. Something akin to.

        public IServiceProvider ConfigureServices(IServiceCollection services)
        {
            services.AddGrainCallFilter<InterfaceToIntercept, IGrainFilterImplementation>();
            return services.BuildServiceProvider();
        }

Ron Milne.

贡献者指南