blob: af76a25c565b3307d9d9f462429a338009120c3c [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "IProfilingConnection.hpp"
namespace arm
{
namespace pipe
{
class ISendThread
{
public:
virtual ~ISendThread() {}
/// Start the thread
virtual void Start(IProfilingConnection& profilingConnection) = 0;
/// Stop the thread
virtual void Stop(bool rethrowSendThreadExceptions = true) = 0;
};
} // namespace pipe
} // namespace arm