java中issueCall的用法_NodeJS Callback issue with setTimeout()

i am new to developing raspberry pi 3 server in NodeJS. Recently i started working on NodeJS with Bluetooth BLE technology, i write a server to send response and notification over the BLE everything is working fine but when i use setTimeout() function the callback isn't work its ref become null and NodeJS isn't sent any response notification back to connected device here is my NodeJS code i am using bleno.js library for BLE Callback

To send response back to the caller

function updateCallback(ref, msg=""){

if (ref._updateValueCallback) {

console.log('Response value : '+msg);

ref._updateValueCallback(ref._value);

}

}

if(tokens[2]=="1"){

func.storeRelayAction(db, "1", decryptedString).then(result => {

this._value = Buffer.from(result.toString(), 'utf8');

updateCallback(this,result.toString()); // Send proper call back to device

}).then(()=>{

unlockTrigger();

var timer = func.getTimer(db);

timer.then(delayTime=>{

console.log(delayTime + "::delayTime");

if(delayTime){

setTimeout(function(){

lockTrigger();

console.log("after sleep");

this._value = Buffer.from("1", 'utf8');

updateCallback(this,"1");// Not Working from here

},parseInt(delayTime)*1000)

}

})

})

}

If i moved the updateCallback(this,"1") outside setTimeout funcation then it work perfectly

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值