dotnet/orleans

Extending AddGrainCallFilter to define interface to intercept.

Open

#3 480 ouverte le 2 oct. 2017

Voir sur GitHub
 (4 commentaires) (1 réaction) (1 assigné)C# (2 123 forks)batch import
area-grainsenhancementhelp wanted

Métriques du dépôt

Stars
 (10 777 stars)
Métriques de merge PR
 (Merge moyen 2j 2h) (64 PRs mergées en 30 j)

Description

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.

Guide contributeur