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 ortc factory interface * @author ORTC team members (ortc@ibt.pt) *//*from w w w. ja v a 2 s. c o m*/ package ibt.ortc.extensibility; /** * Represents a factory of a type of ortc clients. * * @version 2.1.0 27 Mar 2013 2012 * @author IBT * */ public interface OrtcFactory { /** * Creates a new instance of a OrtcClient. * @return OrtcClient Ortc client instance */ public OrtcClient createClient(); }