getStressData

abstract fun getStressData(daysBack: Int): Flowable<List<StressData>>

Returns Flowable that emits list of stress data for day daysBack ago.

Return

Flowable that emits list of stress data for day daysBack ago

See also

Parameters

daysBack

for how many days ago in relation to today information is needed (0 for today)


abstract fun getStressData(from: Long, to: Long): Flowable<List<StressData>>

Returns Flowable that emits list of stress data for period from from to to.

Return

Flowable that emits list of stress data

See also

Parameters

from

minimum UNIX-timestamp of stress data

to

maximum UNIX-timestamp of stress data