Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8155165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:35:25+00:00 2026-06-06T16:35:25+00:00

Given: public interface IBatchProcess { void Run(); } and multiple implementation of: public class

  • 0

Given:

public interface IBatchProcess
{
    void Run();
}

and multiple implementation of:

public class BatchProcessOne : IBatchProcess { ... }
public class BatchProcessTwo : IBatchProcess { ... }
public class BatchProcessThree : IBatchProcess { ... }

and a tracing decorator:

public class BatchProcessTraceDecorator : IBatchProcess
{
    private readonly IBatchProcess _inner;

    public BatchProcessTraceDecorator( IBatchProcess inner )
    {
        _inner = inner;
    }

    public void Run()
    {
        Trace.TraceInformation( "Starting batch process..." );
        _inner.Run();
        Trace.TraceInformation( "Batch process complete." );
    }
}

How can I bind the decorator and all of the implementations such that when I call kernel.GetAll I get 3 instances of the tracing decorator, each with a different inner batch process?

I know about Ninject Interception and do not want to use proxy based solutions for this for various reasons. At the moment it looks like I need to play around with the activation strategy for IBatchProcess instances such that they are resolved and then I can decorate and return them but I am hoping I have simply missed something in the binding api.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T16:35:26+00:00Added an answer on June 6, 2026 at 4:35 pm

    If you don’t need to inject dependencies into the decorator there is a very simple solution to your problem. Simply use the OnActivation binding methods. That would look like

    Bind<IBatchProcess>().To<ConcreteBatchProcess>()
                         .OnActivation((ctx, process) => 
                             new BatchProcessDecorator(process));
    

    If you need to inject stuff into the decorator you can use the same trick but resolve the decorator by

    Bind<IBatchProcess>().To<ConcreteBatchProcess>()
                         .OnActivation((ctx, process) => 
                             ctx.Kernel.Get<BatchProcessDecorator>(new ConstructorArgument("process", process)));
    

    Hope that helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given the following code: public interface Selectable { public void select(); } public class
Given a base class with the following interface: public class Base { public virtual
Given: class A { public void m(List l) { ... } } Let's say
Given this code public interface IRepository<T> { IQueryable<T> GetAll(); } and this public class
Given the following code: public interface IExample { ... } public abstract class BaseExample:
Given a basic repository interface: public interface IPersonRepository { void AddPerson(Person person); List<Person> GetAllPeople();
Given the following interface: public interface IMyProcessor { void Process(); } I'd like to
Given the following types: public interface IMyClass { } public class MyClass : IMyClass
Given the following generic interface and implementing class: public interface IRepository<T> { // U
Given an example such as .. public interface IInterface { } public static void

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.