Giter VIP home page Giter VIP logo

Comments (3)

judgeaxl avatar judgeaxl commented on August 17, 2024

Iā€™m using a fairly substantial modification of Hypodermic (for supporting Unreal Engine types) and I added a block for such resolutions. Basically anything registered with an alias will refuse to resolve the actual type unless asSelf() has also been used.

The rewrite makes it a bit tricky to supply a patch but it basically tracks any aliased types and rejects them in resolveIfCanBeRegistered, which is where the concrete type otherwise would be doubly registered.

Iā€™m currently on vacation but I can supply more details in August.

from hypodermic.

ybainier avatar ybainier commented on August 17, 2024

@badiozam hey, as @judgeaxl stated, you can use asSelf() on a registration to tell Hypodermic that you want your concrete type to be resolvable as well. So if I use your sample it goes like this:

Hypodermic::ContainerBuilder builder;

builder.registerType< ConcreteClass >().as< InterfaceClass >().asSelf().singleInstance();
...
auto container = builder.build();
...
auto singleton_interface_ref = container->resolve< InterfaceClass >();
auto singleton_concrete_ref = container->resolve< ConcreteClass >();

assert(singleton_interface_ref == singleton_concrete_ref); // Will pass

You can have a look at the wiki to discover more features.

Cheers

from hypodermic.

ybainier avatar ybainier commented on August 17, 2024

@badiozam I am closing this issue. Feel free to keep asking for help.

from hypodermic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.