dotnet/orleans
GitHub で見るExtending AddGrainCallFilter to define interface to intercept.
Open
#3,480 opened on 2017年10月2日
area-grainsenhancementhelp wanted
Repository metrics
- Stars
- (10,777 stars)
- PR merge metrics
- (平均マージ 2d 2h) (30d で 64 merged PRs)
説明
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.