Back to project page RoboDroid.
The source code is released under:
Apache License
If you think the Android project RoboDroid 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 ch.quantasy.tinkerforge.tinker.application.definition; //from w ww .jav a 2 s . c o m import ch.quantasy.tinkerforge.tinker.agent.definition.Agent; public interface Application<E extends Application<E>> { /** * Called after the connection to the {@link Agent}. * * @param agent */ public void connectedToAgent(Agent<E> agent); /** * Called after the disconnection from the {@link Agent}. * * @param agent */ public void disconnectedFromAgent(Agent<E> agent); /** * Called prior to the disconnection form the {@link Agent}. It is the last * chance to act on the connected {@link Agent} * * @param agent */ public void disconnectingFromAgent(Agent<E> agent); }