You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

dataflow.yml 757 B

123456789101112131415161718192021222324252627282930313233
  1. nodes:
  2. - id: cxx-node-rust-api
  3. path: build/node_rust_api
  4. inputs:
  5. tick: dora/timer/millis/300
  6. outputs:
  7. - counter
  8. - id: cxx-node-c-api
  9. path: build/node_c_api
  10. inputs:
  11. tick: cxx-node-rust-api/counter
  12. outputs:
  13. - counter
  14. - id: runtime-node-1
  15. operators:
  16. - id: operator-rust-api
  17. shared-library: build/operator_rust_api
  18. inputs:
  19. counter_1: cxx-node-c-api/counter
  20. counter_2: cxx-node-rust-api/counter
  21. outputs:
  22. - status
  23. - id: runtime-node-2
  24. operators:
  25. - id: operator-c-api
  26. shared-library: build/operator_c_api
  27. inputs:
  28. op_status: runtime-node-1/operator-rust-api/status
  29. outputs:
  30. - half-status