C# (CSharp) Appspotdemo.Mono.Droid Namespace

Classes

Name Description
AppRTCDemoActivity
AppRTCDemoActivity.GAEHandler
AppRTCDemoActivity.OnClickListenerAnonymousInnerClassHelper
AppRTCDemoActivity.PCObserver
AppRTCDemoActivity.RunnableAnonymousInnerClassHelper
AppRTCDemoActivity.RunnableAnonymousInnerClassHelper.StatsObserverAnonymousInnerClassHelper
AppRTCDemoActivity.SDPObserver
AppRTCDemoActivity.VideoCallbacks
FramePool This class acts as an allocation pool meant to minimize GC churn caused by frame allocation & disposal. The public API comprises of just two methods: copyFrame(), which allocates as necessary and copies, and returnFrame(), which returns frame ownership to the pool for use by a later call to copyFrame(). This class is thread-safe; calls to copyFrame() and returnFrame() are allowed to happen on any thread.
GAEChannelClient Java-land version of Google AppEngine's JavaScript Channel API: https://developers.google.com/appengine/docs/python/channel/javascript Requires a hosted HTML page that opens the desired channel and dispatches JS on{Open,Message,Close,Error}() events to a global object named "androidMessageHandler".
GAEChannelClient.WebChromeClientAnonymousInnerClassHelper
GAEChannelClient.WebViewClientAnonymousInnerClassHelper
GAEChannelClient.androidMessageHandler
Resource
Resource.Attribute
Resource.Drawable
Resource.String
StringHelperClass
UnhandledExceptionHandler Singleton helper: install a default unhandled exception handler which shows an informative dialog and kills the app. Useful for apps whose error-handling consists of throwing RuntimeExceptions. NOTE: almost always more useful to Thread.setDefaultUncaughtExceptionHandler() rather than Thread.setUncaughtExceptionHandler(), to apply to background threads as well.
VideoStreamsView A GLSurfaceView{,.Renderer} that efficiently renders YUV frames from local & remote VideoTracks using the GPU for CSC. Clients will want to call the constructor, setSize() and updateFrame() as appropriate, but none of the other public methods of this class are of interest to clients (only to system classes).