📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 07:43:02
📂
/ (Root)
/
lib
/
python3.6
/
site-packages
/
tuned
/
exports
📍 /lib/python3.6/site-packages/tuned/exports
🔄 Refresh
✏️
Editing: interfaces.py
Read Only
class ExportableInterface(object): pass class ExporterInterface(object): def export(self, method, in_signature, out_signature): # to be overridden by concrete implementation raise NotImplementedError() def signal(self, method, out_signature): # to be overridden by concrete implementation raise NotImplementedError() def send_signal(self, signal, *args, **kwargs): # to be overridden by concrete implementation raise NotImplementedError() def start(self): raise NotImplementedError() def stop(self): raise NotImplementedError() def period_check(self): pass
💾 Save Changes
❌ Cancel