Searched refs:NormalizedComponent (Results 1 – 8 of 8) sorted by relevance
104 class NormalizedComponent {114 explicit NormalizedComponent(Component<Params...> (*)(FormalArgs...), Args&&... args);116 …NormalizedComponent(NormalizedComponent&& storage) noexcept : storage(std::move(storage.storage)) … in NormalizedComponent() function117 NormalizedComponent(const NormalizedComponent&) = delete;119 NormalizedComponent& operator=(NormalizedComponent&&) = delete;120 NormalizedComponent& operator=(const NormalizedComponent&) = delete;123 NormalizedComponent(fruit::impl::ComponentStorage&& storage, fruit::impl::MemoryPool memory_pool);
117 Injector(const NormalizedComponent<NormalizedComponentParams...>& normalized_component,125 Injector(NormalizedComponent<NormalizedComponentParams...>&& normalized_component,
55 class NormalizedComponent; variable
71 friend class NormalizedComponent; variable
29 inline NormalizedComponent<Params...>::NormalizedComponent(Component<Params...> (*getComponent)(For… in NormalizedComponent() function31 : NormalizedComponent(std::move(fruit::Component<Params...>( in NormalizedComponent()37 inline NormalizedComponent<Params...>::NormalizedComponent(fruit::impl::ComponentStorage&& storage, in NormalizedComponent() function
94 inline Injector<P...>::Injector(const NormalizedComponent<NormalizedComponentParams...>& normalized… in Injector()
43 …const NormalizedComponent<Required<Request>, RequestDispatcher> requestDispatcherNormalizedCompone… in run()68 …const NormalizedComponent<Required<Request>, RequestDispatcher>& requestDispatcherNormalizedCompon… in worker_thread_main()
35 …static fruit::NormalizedComponent<fruit::Annotated<Cached, Greeter>> normalizedComponent(getMainCo… in createInjector()