You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project is organized with services functioning as servers. Each protocol in the Sagittarius folder corresponds to
53
-
services that Sagittarius must implement as a server.
60
+
The project is organized with services functioning as servers. Each protocol in the Aquila folder corresponds to
61
+
services that Aquila must implement as a server.
62
+
63
+
> Notice: Sagittarius has been splitted into a service without and with streams regarding issues due to the thread blocking implementation of Ruby gRPC
54
64
55
65
```ascii-tree
56
66
.
57
67
├── aquila
58
68
│ ├── action - Action service (emits events, and handles executions)
59
69
│ ├── module - Module service for Taurus to send over datatypes, functions and flow types
60
70
│ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
61
-
│ ├── runtime_usage - Service for runtime usage (handles execution time of a flow)
62
71
│ └── execution - Service for updating completed executions
63
-
├── sagittarius
72
+
├── sagittarius_gateway
73
+
│ ├── flow - Flow service (handles flow updates)
74
+
│ ├── module - Module service to receive datatypes, functions and flow types from aquila
75
+
│ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
76
+
│ ├── runtime_usage - Service for runtime usage (handles execution time of a flow)
77
+
│ └── test_execution - Service and Types for the test execution├── sagittarius
78
+
├── sagittarius_rails
64
79
│ ├── flow - Flow service (handles flow updates)
65
80
│ ├── module - Module service to receive datatypes, functions and flow types from aquila
66
-
│ ├── ping - Ping service (performs life checks)
67
81
│ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
68
82
│ ├── runtime_usage - Service for runtime usage (handles execution time of a flow)
69
-
│ └── test_execution - Service and Types for the test execution
83
+
│ ├── test_execution - Service and Types for the test execution
84
+
│ └── token - Service for verifing a runtime token
0 commit comments