2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
2016-06-10 18:50:46 +02:00
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
2016-06-28 11:30:42 +02:00
|
|
|
import info.nightscout.androidaps.plugins.Loop.APSResult;
|
2016-06-14 23:45:55 +02:00
|
|
|
|
2016-06-10 18:50:46 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 10.06.2016.
|
|
|
|
*/
|
2016-06-14 23:45:55 +02:00
|
|
|
public interface APSInterface {
|
2016-06-10 18:50:46 +02:00
|
|
|
public APSResult getLastAPSResult();
|
|
|
|
public Date getLastAPSRun();
|
|
|
|
|
2017-01-08 00:38:53 +01:00
|
|
|
public void invoke(String initiator);
|
2016-06-10 18:50:46 +02:00
|
|
|
}
|