blob: 7a7e5efc64944660da5dd80753498c7b45c2b3de [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
namespace arm
{
namespace pipe
{
class IConsumer
{
public:
virtual ~IConsumer() {}
/// Set a "ready to read" flag in the buffer to notify the reading thread to start reading it.
virtual void SetReadyToRead() = 0;
};
} // namespace pipe
} // namespace arm