mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 15:26:39 +00:00
8dfee64dc8
Add a subscriber service to handle subscribing to whole sets of telemetry elements via delegation; this exposes TelemetrySubscription via a service which can be retrieved via dependency injection. Supports the use of this variety of subscription for autoflow tabular views, WTD-614.
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "Data bundle",
|
|
"description": "Interfaces and infrastructure for real-time and historical data.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "telemetryService",
|
|
"type": "aggregator",
|
|
"implementation": "TelemetryAggregator.js",
|
|
"depends": [ "$q" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TelemetryController",
|
|
"implementation": "TelemetryController.js",
|
|
"depends": [ "$scope", "$q", "$timeout", "$log" ]
|
|
}
|
|
],
|
|
"capabilities": [
|
|
{
|
|
"key": "telemetry",
|
|
"implementation": "TelemetryCapability.js",
|
|
"depends": [ "$injector", "$q", "$log" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "telemetryFormatter",
|
|
"implementation": "TelemetryFormatter.js"
|
|
},
|
|
{
|
|
"key": "telemetrySubscriber",
|
|
"implementation": "TelemetrySubscriber.js",
|
|
"depends": [ "$q", "$timeout" ]
|
|
}
|
|
]
|
|
}
|
|
} |