MCPcopy Create free account
hub / github.com/Norbyte/ositools / Evaluate

Method Evaluate

OsiInterface/Debugger.cpp:562–571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

560 }
561
562 void Debugger::Evaluate(uint32_t seq, EvalType type, uint32_t nodeId, MsgTuple const & params,
563 std::function<void(ResultCode, bool)> completionCallback)
564 {
565 pendingActions_.push([=]() {
566 bool querySucceeded = false;
567 auto rc = this->EvaluateInServerThread(seq, type, nodeId, params, querySucceeded);
568 completionCallback(rc, querySucceeded);
569 });
570 breakpointCv_.notify_one();
571 }
572
573 void MsgToValue(MsgTypedValue const & msg, TypedValue & tv, void * tvVmt)
574 {

Callers 1

HandleEvaluateMethod · 0.80

Calls 1

Tested by

no test coverage detected