MCPcopy Create free account
hub / github.com/andytill/erlyberly / stopTrace

Method stopTrace

src/main/java/erlyberly/node/NodeAPI.java:284–295  ·  view source on GitHub ↗
(ModFunc mf)

Source from the content-addressed store, hash-verified

282 }
283
284 public synchronized void stopTrace(ModFunc mf) throws Exception {
285 assert mf.getFuncName() != null : "function name cannot be null";
286
287 sendRPC("erlyberly", "stop_trace",
288 list(
289 OtpUtil.atom(mf.getModuleName()),
290 OtpUtil.atom(mf.getFuncName()),
291 new OtpErlangInt(mf.getArity()),
292 new OtpErlangAtom(mf.isExported())
293 ));
294 receiveRPC();
295 }
296
297 private OtpErlangList toTraceTuple(ModFunc mf) {
298 return list(

Callers 1

onRemoveTracerMethod · 0.80

Calls 8

sendRPCMethod · 0.95
atomMethod · 0.95
receiveRPCMethod · 0.95
getFuncNameMethod · 0.80
listMethod · 0.80
getModuleNameMethod · 0.80
getArityMethod · 0.80
isExportedMethod · 0.80

Tested by

no test coverage detected