I2C Interrupt within CurieTimerOne

Hi,

I am trying to read data every few seconds from some sensors using I2C communication. I want to use CurieTimerOne to implement that, but interrupt is not allowed within Curie timer so I2C seems not working.

My question is, is there any function like what sei() does for other Arduino boards in Arduino 101, which allows me to trigger interrupts within Curie Timer? I tried interrupts() function but it doesn't seem to work.

Or any other suggestions to achive same functionality?

I don't want to do it in loop because I am doing ither things in loop which take a long time and affect me reading data in short time interval.