sophiar_manager_config.json 739 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "listen_port": 5277,
  3. "object_list": [
  4. {
  5. "type": "source_node_type",
  6. "name": "source",
  7. "init_config": {
  8. "output_obj_name": "out_obj"
  9. },
  10. "start_config": {
  11. "start_value": 234
  12. }
  13. },
  14. {
  15. "type": "proxy_node_type",
  16. "name": "proxy",
  17. "init_config": {
  18. "input_obj_name": "out_obj",
  19. "output_obj_name": "proxy_obj"
  20. },
  21. "start_config": {
  22. "start_value": 10000
  23. },
  24. "dependencies": [
  25. "source"
  26. ]
  27. },
  28. {
  29. "type": "target_node_type",
  30. "name": "target",
  31. "init_config": {
  32. "source_obj_name": "out_obj",
  33. "proxy_obj_name": "proxy_obj"
  34. },
  35. "start_config": {}
  36. }
  37. ]
  38. }