comparison Platforms/Generic/OracleWebService.h @ 242:092db46c6291 am

improved SDL/Wasm unification
author am@osimis.io
date Wed, 20 Jun 2018 14:20:55 +0200
parents e2fe9352f240
children 313903066093
comparison
equal deleted inserted replaced
241:a4197519eb55 242:092db46c6291
54 const std::string& body, 54 const std::string& body,
55 Orthanc::IDynamicObject* payload) 55 Orthanc::IDynamicObject* payload)
56 { 56 {
57 oracle_.Submit(new WebServicePostCommand(callback, parameters_, uri, body, payload)); 57 oracle_.Submit(new WebServicePostCommand(callback, parameters_, uri, body, payload));
58 } 58 }
59
60 void Start()
61 {
62 oracle_.Start();
63 }
64
65 void Stop()
66 {
67 oracle_.Start();
68 }
59 }; 69 };
60 } 70 }