aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/src/ISendThread.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/client/src/ISendThread.hpp')
-rw-r--r--profiling/client/src/ISendThread.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/profiling/client/src/ISendThread.hpp b/profiling/client/src/ISendThread.hpp
new file mode 100644
index 0000000000..af76a25c56
--- /dev/null
+++ b/profiling/client/src/ISendThread.hpp
@@ -0,0 +1,31 @@
+//
+// 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
+