X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Finclude%2FOutOfProcClientWrapper.h;h=02db304a3d66b7248541d0215876241c39b3ce0c;hb=refs%2Ftags%2Faccepted%2Ftizen%2F4.0%2Funified%2F20171211.061426;hp=79c2d4e6cfd9c0ec4021c11b3ed7589e1d0c4cd1;hpb=5d0c9be426113ad25185853ac72593b582717382;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/include/OutOfProcClientWrapper.h b/resource/include/OutOfProcClientWrapper.h index 79c2d4e..02db304 100644 --- a/resource/include/OutOfProcClientWrapper.h +++ b/resource/include/OutOfProcClientWrapper.h @@ -32,6 +32,16 @@ namespace OC PlatformConfig /*cfg*/) {} + virtual OCStackResult stop() + { + return OC_STACK_NOTIMPL; + } + + virtual OCStackResult start() + { + return OC_STACK_NOTIMPL; + } + virtual OCStackResult ListenForResource(const std::string& /*servUrl*/, const std::string& /*rsrcType*/, OCConnectivityType /*connType*/, @@ -39,6 +49,21 @@ namespace OC QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} + virtual OCStackResult ListenForResourceList(const std::string& /*servUrl*/, + const std::string& /*rsrcType*/, + OCConnectivityType /*connType*/, + FindResListCallback& /*callback*/, + QualityOfService /*QoS*/) + {return OC_STACK_NOTIMPL;} + + virtual OCStackResult ListenForResourceListWithError(const std::string& /*servUrl*/, + const std::string& /*rsrcType*/, + OCConnectivityType /*connType*/, + FindResListCallback& /*callback*/, + FindErrorCallback& /*errorCallback*/, + QualityOfService /*QoS*/) + {return OC_STACK_NOTIMPL;} + virtual OCStackResult ListenErrorForResource(const std::string& /*servUrl*/, const std::string& /*rsrcType*/, OCConnectivityType /*connType*/, @@ -65,6 +90,7 @@ namespace OC const std::string& /*uri*/, const QueryParamsMap& /*queryParams*/, const HeaderOptions& /*headerOptions*/, + OCConnectivityType /*connectivityType*/, GetCallback& /*callback*/, QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} @@ -92,6 +118,7 @@ namespace OC const OCDevAddr& /*devAddr*/, const std::string& /*uri*/, const HeaderOptions& /*headerOptions*/, + OCConnectivityType /*connectivityType*/, DeleteCallback& /*callback*/, QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} @@ -151,7 +178,7 @@ namespace OC const std::string& /*resourceUri*/, const QueryParamsMap& /*queryParams*/, const HeaderOptions& /*headerOptions*/, - FindCallback& /*callback*/, + MQTopicCallback& /*callback*/, QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} @@ -160,10 +187,18 @@ namespace OC const OCRepresentation& /*rep*/, const QueryParamsMap& /*queryParams*/, const HeaderOptions& /*headerOptions*/, - MQCreateTopicCallback& /*callback*/, + MQTopicCallback& /*callback*/, QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} #endif +#ifdef TCP_ADAPTER + virtual OCStackResult findKeepAliveResource(std::string /*host*/, + KeepAliveCallback /*resultCallback*/) + {return OC_STACK_NOTIMPL;} + virtual OCStackResult sendKeepAliveRequest(std::string /*host*/, const OCRepresentation& /*rep*/, + KeepAliveCallback /*resultCallback*/) + {return OC_STACK_NOTIMPL;} +#endif }; }