| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "listen_port": 5277,
- "object_list": [
- {
- "type": "source_node_type",
- "name": "source",
- "init_config": {
- "output_obj_name": "out_obj"
- },
- "start_configs": {
- "start_value": 234
- }
- },
- {
- "type": "proxy_node_type",
- "name": "proxy",
- "init_configs": {
- "input_obj_name": "out_obj",
- "output_obj_name": "proxy_obj"
- },
- "start_configs": {
- "start_value": 10000
- },
- "dependencies": [
- "source"
- ]
- },
- {
- "type": "target_node_type",
- "name": "target",
- "init_configs": {
- "listen_obj_name": "out_obj"
- },
- "start_configs": {}
- }
- ]
- }
|