dotnet/orleans

Extending AddGrainCallFilter to define interface to intercept.

Open

#3.480 aberto em 2 de out. de 2017

Ver no GitHub
 (4 comments) (1 reaction) (1 assignee)C# (2.123 forks)batch import
area-grainsenhancementhelp wanted

Métricas do repositório

Stars
 (10.777 stars)
Métricas de merge de PR
 (Mesclagem média 2d 2h) (64 fundiu PRs em 30d)

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.

Guia do colaborador