dotnet/orleans
在 GitHub 查看Extending AddGrainCallFilter to define interface to intercept.
Open
#3,480 创建于 2017年10月2日
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.