MCPcopy Create free account
hub / github.com/CyCoreSystems/ari-proxy / bridgeVideoSourceDelete

Method bridgeVideoSourceDelete

server/bridge.go:274–287  ·  view source on GitHub ↗
(ctx context.Context, reply string, req *proxy.Request)

Source from the content-addressed store, hash-verified

272}
273
274func (s *Server) bridgeVideoSourceDelete(ctx context.Context, reply string, req *proxy.Request) {
275 // bind dialog
276 if req.Key.Dialog != "" {
277 s.Dialog.Bind(req.Key.Dialog, "bridge", req.Key.ID)
278 }
279
280 err := s.ari.Bridge().VideoSourceDelete(req.Key)
281 if err != nil {
282 s.sendError(reply, err)
283 return
284 }
285
286 s.sendError(reply, nil)
287}

Callers

nothing calls this directly

Calls 4

sendErrorMethod · 0.95
VideoSourceDeleteMethod · 0.80
BridgeMethod · 0.80
BindMethod · 0.65

Tested by

no test coverage detected