media.keepaliveChannel - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.media.keepaliveChannel
API ์ค๋ช
- Channel ์ฐ๊ฒฐ ์ ์ง API
media.createChannel
์์ ์์ฑํ Channel ์ฐ๊ฒฐ์ ์ ์งํจ
- ์ค์ ํ์ง ์์ ๊ฒฝ์ฐ 70์ด ํ ์ฐ๊ฒฐ์ ํด์ ํจ
API ๊ตฌ์กฐ
- function keepaliveChannel(options,callback)
options
result_cd
- 200: ์ฑ๊ณต
- 500: ์์คํ
Error
extra
์ฌ์ฉ ์์
// callback ๋ฐฉ์
var ticker = 0;
setInterval(function () {
ticker++;
if (ticker % 30 === 7) {
console.log('keepalive:' + ticker);
gigagenie.media.keepaliveChannel(null, function (result_cd, result_msg, extra) {
console.log("keepaliveChannel");
});
}
}, 1000);