We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f60b99f + 37a1748 commit bb96f87Copy full SHA for bb96f87
2 files changed
Launcher.cpp
@@ -51,7 +51,7 @@ namespace Plugin {
51
_service->AddRef();
52
_deactivationInProgress = false;
53
54
- _memory = Core::Service<MemoryObserverImpl>::Create<Exchange::IMemory>(0);
+ _memory = Core::ServiceType<MemoryObserverImpl>::Create<Exchange::IMemory>(0);
55
ASSERT(_memory != nullptr);
56
57
_activity = Core::ProxyType<Job>::Create(&config, interval, _memory);
Launcher.h
@@ -784,7 +784,7 @@ class Launcher : public PluginHost::IPlugin {
784
private:
785
PluginHost::IShell* _service;
786
Exchange::IMemory* _memory;
787
- Core::Sink<Notification> _notification;
+ Core::SinkType<Notification> _notification;
788
Core::ProxyType<Job> _activity;
789
bool _deactivationInProgress;
790
0 commit comments