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.
/** * /*ww w . ja va 2 s. co m*/ */ package ibt.ortc.plugins.IbtRealtimeSJ; import ibt.ortc.extensibility.OrtcClient; import ibt.ortc.extensibility.OrtcFactory; public class IbtRealtimeSJFactory implements OrtcFactory { /* (non-Javadoc) * @see ibt.ortc.android.extensibility.OrtcFactory#createClient() */ @Override public OrtcClient createClient() { // TODO Auto-generated method stub return new IbtRealtimeSJClient(); } }