Back to project page SmartCocktailShaker.
The source code is released under:
MIT License
If you think the Android project SmartCocktailShaker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tonydicola.smartshaker.interfaces; /*ww w . j a v a 2s . c o m*/ import android.os.Handler; import java.io.IOException; import java.util.concurrent.atomic.AtomicLong; /** * Created by Tony on 2/24/14. */ public interface DeviceConnection { public void requestPermission(Runnable granted); public void open() throws IOException; public Double getMeasure() throws IOException; public void close(); }