(blockId string)
| 293 | } |
| 294 | |
| 295 | func DestroyBlockController(blockId string) { |
| 296 | controller := getController(blockId) |
| 297 | if controller == nil { |
| 298 | return |
| 299 | } |
| 300 | controller.Stop(true, Status_Done, true) |
| 301 | wstore.DeleteRTInfo(waveobj.MakeORef(waveobj.OType_Block, blockId)) |
| 302 | deleteController(blockId) |
| 303 | } |
| 304 | |
| 305 | func sendConnMonitorInputNotification(controller Controller) { |
| 306 | connName := controller.GetConnName() |
no test coverage detected