aboutsummaryrefslogtreecommitdiff
path: root/src/modules/interface/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/interface/module.h')
-rw-r--r--src/modules/interface/module.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/modules/interface/module.h b/src/modules/interface/module.h
new file mode 100644
index 0000000000..f2709789e4
--- /dev/null
+++ b/src/modules/interface/module.h
@@ -0,0 +1,33 @@
+#ifndef MODULE_H
+#define MODULE_H
+
+#include "typedefs.h"
+
+namespace webrtc
+{
+
+class Module
+{
+public:
+ // Returns version of the module and its components.
+ virtual int32_t Version(char* version,
+ uint32_t& remainingBufferInBytes,
+ uint32_t& position) const = 0;
+
+ // Change the unique identifier of this object.
+ virtual int32_t ChangeUniqueId(const int32_t id) = 0;
+
+ // Returns the number of milliseconds until the module want a worker
+ // thread to call Process.
+ virtual int32_t TimeUntilNextProcess() = 0 ;
+
+ // Process any pending tasks such as timeouts.
+ virtual int32_t Process() = 0 ;
+
+protected:
+ virtual ~Module() {}
+};
+
+} // namespace webrtc
+
+#endif // MODULE_H