Appearance
Mean RRi 
The Mean RRi value is sent as part of the final results.
The application can receive the Mean RRi result by implementing VitalSignsListener:
Kotlin
override fun onFinalResults(results: VitalSignsResults) {
    runOnUiThread {
        (results.getResult(VitalSignTypes.MEAN_RRI) as? VitalSignMeanRRI)?.let { meanRRI ->
            Log.i("VITAL SIGN", "Mean RRI: ${meanRRI.value}")
            Log.i("VITAL SIGN", "Confidence Level: ${meanRRI.confidence?.level?.name ?: "N/A"}")
        }
    }
}Java
@Override
public void onFinalResults(final VitalSignsResults results) {
    runOnUiThread(() -> {
        VitalSignMeanRRI meanRRI = (VitalSignMeanRRI) results.getResult(VitalSignTypes.MEAN_RRI);
        if (meanRRI != null) {
            Log.i("VITAL SIGN", "Mean RRI: " + meanRRI.getValue());
            VitalSignConfidence confidence = meanRRI.getConfidence();
            Log.i("VITAL SIGN", "Confidence Level: "+ confidence != null ? confidence.getLevel().name() : "N/A");
        }
    });
}For general information about vital signs see the Vital Signs and Health Indicators Information Page.
For a list of supported vital signs per platform and measurement mode (face/finger) see the Supported Vital Signs Page.
Important
Note that vital signs are sent on a background thread. The application must switch to the UI thread in order to perform UI updates.