aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common/messaging/payloads.py
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/common/messaging/payloads.py')
-rw-r--r--yardstick/common/messaging/payloads.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/yardstick/common/messaging/payloads.py b/yardstick/common/messaging/payloads.py
index c59c87536..8ede1e58e 100644
--- a/yardstick/common/messaging/payloads.py
+++ b/yardstick/common/messaging/payloads.py
@@ -63,3 +63,11 @@ class TrafficGeneratorPayload(Payload):
# injection. The content will depend on the generator and the
# traffic type.
}
+
+
+class RunnerPayload(Payload):
+ """Base runner payload class"""
+ REQUIRED_FIELDS = {
+ 'version', # (str) version of the payload transmitted.
+ 'data' # (dict) generic container of data to be used if needed.
+ }