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

Method seqTrace

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

Source from the content-addressed store, hash-verified

370 }
371
372 public synchronized void seqTrace(ModFunc mf) throws IOException, OtpErlangException {
373 sendRPC("erlyberly", "seq_trace",
374 list(
375 tuple(OtpUtil.atom(self.node()), mbox.self()),
376 atom(mf.getModuleName()),
377 atom(mf.getFuncName()),
378 mf.getArity(),
379 new OtpErlangAtom(mf.isExported())
380 ));
381
382 OtpErlangObject result = receiveRPC();
383
384 System.out.println(result);
385 }
386
387 public synchronized OtpErlangObject getProcessState(String pidString) throws IOException, OtpErlangException {
388 sendRPC("erlyberly", "get_process_state", list(pidString));

Callers 1

onSeqTraceMethod · 0.45

Calls 9

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

Tested by

no test coverage detected