[android-developers] Re: About the oneway keyword in AIDL

2009-07-17 Thread Dianne Hackborn
Well the flag is not private, so the keyword can't be too private. :) There are lots of gotchas with this though -- ordering of delivery is tied to the target object (so you can receive calls on different interfaces out of order), and this does NOT impact calls in the same process. On Fri, Jul 17

[android-developers] Re: About the oneway keyword in AIDL

2009-07-17 Thread Guillaume Perrot
That is not a problem in my use case [?] 2009/7/17 Marco Nelissen > > On Fri, Jul 17, 2009 at 7:20 AM, Guillaume > Perrot wrote: > > > > Hello, > > I found in Android source code an interesting but undocumented keyword > > for aidl: "oneway" (before void in a function). > > As it sounds, the gen

[android-developers] Re: About the oneway keyword in AIDL

2009-07-17 Thread Marco Nelissen
On Fri, Jul 17, 2009 at 7:20 AM, Guillaume Perrot wrote: > > Hello, > I found in Android source code an interesting but undocumented keyword > for aidl: "oneway" (before void in a function). > As it sounds, the generated code uses the corresponding flag > http://developer.android.com/reference/and

[android-developers] Re: About the oneway keyword in AIDL

2009-07-17 Thread Streets Of Boston
I hope it's not 'private'! :=) I'm using oneway quite a bit in my service's aidl definition. On Jul 17, 10:20 am, Guillaume Perrot wrote: > Hello, > I found in Android source code an interesting but undocumented keyword > for aidl: "oneway" (before void in a function). > As it sounds, the gener