11.07.2015 Views

Development Techniques for Native/Hybrid Tizen Apps

Development Techniques for Native/Hybrid Tizen Apps

Development Techniques for Native/Hybrid Tizen Apps

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Message Porting: Web Step 1• Define message handler and create a local message portfunction onReceive(data, remoteMsgPort) {console.log('Received data to \'' + remoteMsgPort.name + '\'');// Search value with the "response“ key<strong>for</strong>(var i in data) {if(data[i].key == "response") {response = data[i].value;break;}}}try {localMessagePort = tizen.messageport.requestLocalMessagePort(localMessagePortName);localMessagePortWatchId = localMessagePort.addMessagePortListener(function(data, remote) {onReceive(data, remote); } );} catch (e) {console.log("Request local message port Error");}15

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!