From: Jin Yoon Date: Mon, 28 Aug 2017 23:45:56 +0000 (+0900) Subject: QoS : High -> Low X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=0847a87636d877ff3f3d8b58284d4b89273a70c1;p=apps%2Fnative%2Fposition-finder-server.git QoS : High -> Low Change-Id: I32369f8c7f364d681b622c66e4924f5fadca9542 --- diff --git a/src/connectivity.c b/src/connectivity.c index ce5d2da..a017aa1 100644 --- a/src/connectivity.c +++ b/src/connectivity.c @@ -216,7 +216,7 @@ int connectivity_notify_bool(connectivity_resource_s *resource_info, const char representation = _create_representation_with_bool(resource_info, key, value); retv_if(!representation, -1); - ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH); + ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW); if (IOTCON_ERROR_NONE != ret) { _I("There are some troubles for notifying value[%d]", ret); _print_iotcon_error(ret); @@ -241,7 +241,7 @@ int connectivity_notify_int(connectivity_resource_s *resource_info, const char * representation = _create_representation_with_int(resource_info, key, value); retv_if(!representation, -1); - ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH); + ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW); if (IOTCON_ERROR_NONE != ret) { _I("There are some troubles for notifying value[%d]", ret); _print_iotcon_error(ret); @@ -266,7 +266,7 @@ int connectivity_notify_double(connectivity_resource_s *resource_info, const cha representation = _create_representation_with_double(resource_info, key, value); retv_if(!representation, -1); - ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH); + ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW); if (IOTCON_ERROR_NONE != ret) { _I("There are some troubles for notifying value[%d]", ret); _print_iotcon_error(ret);