Metrics<T extends Message> class
abstract
A readout of metrics reported by one of the rover's subsystems.
To use this class, create a subclass that extends this class with T
as the generated
Protobuf class. For example, to create metrics for the science subsystem, use:
class ScienceMetrics extends Metrics<ScienceMessage> { }
- Mixed-in types
- Implementers
Constructors
- Metrics(T data)
- A const constructor for metrics.
Properties
-
allMetrics
→ List<
MetricLine> -
A list of user-friendly explanations for each of the metrics.
no setter
- data → T
-
The underlying data used to get these metrics.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasListeners → bool
-
Whether any listeners are currently registered.
no setterinherited
- matchesVersion → bool
-
Whether the Dashboard is certain the firmware matches the right version.
no setter
- name → String
-
A collective name for this group of metrics (usually the name of the subsystem).
no setter
- overallSeverity → Severity?
-
Fetch the overall Security
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- supportedVersion → Version
-
The currently-supported version for this Dashboard.
no setter
- version ↔ Version
-
The version of the data that the firmware sends.
getter/setter pair
- versionCommand → Message
-
A command to notify the firmware of the Dashboard's supportedVersion.
no setter
Methods
-
addListener(
VoidCallback listener) → void -
Register a closure to be called when the object changes.
inherited
-
checkVersion(
T data) → bool - Checks this message's version and checks for support.
-
dispose(
) → void -
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyListeners(
) → void -
Call all the registered listeners.
inherited
-
parseVersion(
T message) → Version - Parses the version out of a given data packet.
-
removeListener(
VoidCallback listener) → void -
Remove a previously registered closure from the list of closures that are
notified when the object changes.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
update(
T value) → void - Updates data with new data.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited