Add a method to trigger multiple FMQ blocking reads.

Test: FMQ unit tests
Bug: 33815422
Change-Id: Idcd1fd79232a1b0caa5784e8dd4f3a929f52fded
This commit is contained in:
Hridya Valsaraju
2017-01-04 16:19:36 -08:00
parent f70884cf4b
commit 9ba9244e5f

View File

@@ -91,4 +91,14 @@ interface ITestMsgQ {
*
*/
oneway requestBlockingRead(int32_t count);
/*
* This method requests the service to repeatedly trigger blocking reads.
*
* @param count Number of messages to read in a single blocking read.
* @param numIter Number of blocking reads to trigger.
*
*/
oneway requestBlockingReadRepeat(int32_t count, int32_t numIter);
};