Back to project page RealtimeMessaging-Android.
The source code is released under:
MIT License
If you think the Android project RealtimeMessaging-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * @fileoverview This file contains the definition of the on disconnected event interface * @author ORTC team members (ortc@ibt.pt) *///from ww w.j a v a 2s . c o m package ibt.ortc.extensibility; /** * Represents the Ortc event when the connection is closed * * @version 2.1.0 27 Mar 2013 2012 * @author IBT * */ public interface OnDisconnected { /** * Fired when the connection is closed * @param sender Ortc client instance that fired the event */ void run(OrtcClient sender); }