Merge "android.hardware.tests.foo@1.0: add oneway methods"

This commit is contained in:
Iliyan Malchev
2016-08-16 14:45:18 +00:00
committed by Android (Google) Code Review
2 changed files with 7 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ interface IFoo {
doSomethingElse(int32_t[15] param) generates (int32_t[32] something);
doStuffAndReturnAString() generates (string something);
mapThisVector(vec<int32_t> param) generates (vec<int32_t> something);
callMe(IFooCallback cb);
oneway callMe(IFooCallback cb);
useAnEnum(SomeEnum zzz) generates (SomeEnum sleepy);
haveAGooberVec(vec<Goober> param);

View File

@@ -1,5 +1,10 @@
package android.hardware.tests.foo@1.0;
//import IFoo;
interface IFooCallback {
heyItsMe(IFooCallback cb);
//heyItsMe(IFoo cb);
heyItsYou(IFooCallback cb);
heyItsYouIsntIt(IFooCallback cb) generates (uint8_t yesOrNo);
oneway heyItsTheMeaningOfLife(uint8_t tmol);
};