summaryrefslogtreecommitdiff
path: root/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp')
-rw-r--r--CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp b/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp
index c32faa0..a1626c3 100644
--- a/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp
+++ b/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp
@@ -16,20 +16,20 @@ using namespace v1_0::commonapi::examples;
static unsigned int cnt = 0; // counter for simulating external events
const static unsigned int maxDeviceNumber = 3;
const static std::string managerInstanceName = "commonapi.examples.Manager";
+const std::string connectionIdService = "service-sample";
int main() {
- CommonAPI::Runtime::setProperty("LogContext", "E05S");
- CommonAPI::Runtime::setProperty("LibraryBase", "E05Manager");
-
+ CommonAPI::Runtime::setProperty("LogContext", "E05S");
+ CommonAPI::Runtime::setProperty("LibraryBase", "E05Manager");
std::shared_ptr<CommonAPI::Runtime> runtime = CommonAPI::Runtime::get();
std::shared_ptr<E05ManagerStubImpl> myService = std::make_shared < E05ManagerStubImpl > (managerInstanceName);
- bool successfullyRegistered = runtime->registerService("local", managerInstanceName, myService);
+ bool successfullyRegistered = runtime->registerService("local", managerInstanceName, myService, connectionIdService);
while (!successfullyRegistered) {
std::cout << "Register Service failed, trying again in 100 milliseconds..." << std::endl;
std::this_thread::sleep_for(std::chrono::milliseconds(100));
- successfullyRegistered = runtime->registerService("local", managerInstanceName, myService);
+ successfullyRegistered = runtime->registerService("local", managerInstanceName, myService, connectionIdService);
}
std::cout << "Successfully Registered Service!" << std::endl;