获取当前帧bytes,垃圾回收
This commit is contained in:
parent
6bdaeaf017
commit
ea963f4076
|
|
@ -195,11 +195,13 @@ func subscribeAndHandleMessagesV3(ws *websocket.Conn, deviceId int) {
|
|||
count := 0
|
||||
//定时器,发送计数器
|
||||
tCount := 0
|
||||
var buf []byte
|
||||
//计算帧率
|
||||
for {
|
||||
//从service获取当前帧
|
||||
buf, c := service.GetDeviceCurrentFrameV4(deviceId, count)
|
||||
newBuf, c := service.GetDeviceCurrentFrameV4(deviceId, count)
|
||||
if c != count {
|
||||
buf = newBuf
|
||||
count = c
|
||||
err2 := ws.WriteMessage(websocket.BinaryMessage, buf)
|
||||
if err2 != nil {
|
||||
|
|
@ -221,7 +223,6 @@ func subscribeAndHandleMessagesV3(ws *websocket.Conn, deviceId int) {
|
|||
}
|
||||
}
|
||||
}
|
||||
buf = nil
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
tCount++
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue