How to start continues oxygen saturation measurement (Sensor.SENSOR_PULSE_OXIMETRY) ?

In my companion app I use next code 

Sensor.setEnabledSensors( [Sensor.SENSOR_HEARTRATE, Sensor.SENSOR_PULSE_OXIMETRY] );
Sensor.enableSensorEvents(method(:onSensor));

This start continues HR measurement (about 1 per second).
But for SpO2 I get old value which do not update at all.

How to start SpO2 measurement? Maybe at least 1 time per 5-10 seconds?