MCPcopy Create free account
hub / github.com/baidu/babylon / process

Method process

test/anyflow/test_processor.cpp:715–719  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

713TEST_F(ProcessorTest, processor_can_chain_together) {
714 struct Tail : public GraphProcessor {
715 virtual int process() noexcept override {
716 BABYLON_LOG(INFO) << "call tail processor";
717 b = *a + 10086;
718 return 0;
719 }
720 ANYFLOW_INTERFACE(ANYFLOW_DEPEND_DATA(int, a) ANYFLOW_EMIT_DATA(int, b))
721 };
722 class Head : public GraphProcessor {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected