Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-09-26 Thread Jonathan Pryor
On Sep 26, 2011, at 6:45 AM, JonV wrote: > I'm essentially trying to solve the same problem as Igor (an Android C# > Service implemented with Mono for Android, consumed by native > Android Java Activities), and I'd be very interested to see any samples or > proofs of concepts that might be out th

Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-09-26 Thread JonV
Igor Russkih writes: > Second question is service <-> UI interaction part. Normally this is done with > AIDL in java.. I haven't found any words on aidl support in monodroid. Guess > it > could be implemented 'manually' - is there any experience exist in this area? Sorry to resurrect an old top

Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-07-26 Thread Igor Russkih
> > > Mono runs threads by using the Linux kernel (pthread_create(), etc.). > > Thanks, the above statement actually answers my question. ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listi

Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-07-26 Thread Jonathan Pryor
On Jul 26, 2011, at 4:12 AM, Igor Russkih wrote: > BTW, could you give some insight into System.Threading.Thread usage.. As I > understand monodroid arch now - for dalvik its a kind of JNI layer (working > eventually as a .net vm). How then its possible to run native .net threads in > there? How

Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-07-26 Thread Igor Russkih
> > Our current idea is to keep this library running in monodroid as an > android service (and by this share the main "heavy" buisness logic code > between WM/android projects), and to create a UI wrapper. (it most probably > will be in native java). > Using Mono for Android to create a UI wrapper

Re: [mono-android] Mono code as Android Service and IPC speed estimations

2011-07-24 Thread Jonathan Pryor
On Jul 23, 2011, at 12:45 AM, Igor Russkih wrote: > Our current idea is to keep this library running in monodroid as an android > service (and by this share the main "heavy" buisness logic code between > WM/android projects), and to create a UI wrapper. (it most probably will be > in native java

[mono-android] Mono code as Android Service and IPC speed estimations

2011-07-22 Thread Igor Russkih
Hello all, Glad xamarin is now alive and wish you good luck with your job, hope also someone could give a review of my problem and comment my questions. Our main interest in monodroid is that we have wellestablished .net WM application with quite big and complex 'business' logic codebase. For sur