diff options
author | 2020-05-27 04:49:11 +0000 | |
---|---|---|
committer | 2020-05-27 04:49:11 +0000 | |
commit | fa6c8aee668fa493505900398bc1996e61aa63de (patch) | |
tree | 69401eebc96c421994344a0f84925b95d4292e85 /services/incremental/ServiceWrappers.cpp | |
parent | aec214b9f32e18214b52938a03dc7229b9be31c2 (diff) | |
parent | d1de4941b56c0f236c35c57ce1abe2dd03d9b8c0 (diff) |
Merge "Lifecycle: detecting blocked and unhealthy." into rvc-dev am: 4e5ff2eb7d am: 1ad652187c am: d1de4941b5
Change-Id: I2f099f41419d4232470094c2f7fa29ad5cc616a9
Diffstat (limited to 'services/incremental/ServiceWrappers.cpp')
-rw-r--r-- | services/incremental/ServiceWrappers.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/incremental/ServiceWrappers.cpp b/services/incremental/ServiceWrappers.cpp index 08fb486c8058..a76aa625ebc6 100644 --- a/services/incremental/ServiceWrappers.cpp +++ b/services/incremental/ServiceWrappers.cpp @@ -175,6 +175,10 @@ public: ErrorCode writeBlocks(std::span<const incfs::DataBlock> blocks) const final { return incfs::writeBlocks({blocks.data(), size_t(blocks.size())}); } + WaitResult waitForPendingReads(const Control& control, std::chrono::milliseconds timeout, + std::vector<incfs::ReadInfo>* pendingReadsBuffer) const final { + return incfs::waitForPendingReads(control, timeout, pendingReadsBuffer); + } }; RealServiceManager::RealServiceManager(sp<IServiceManager> serviceManager, JNIEnv* env) |