File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1181,16 +1181,17 @@ Constructor:
1181
1181
* No args.
1182
1182
1183
1183
Synchronous methods:
1184
- * ` set(data=None) ` Trigger the message with optional payload.
1184
+ * ` set(data=None) ` Trigger the ` Message ` with optional payload (may be any
1185
+ Python object).
1185
1186
* ` is_set() ` Returns ` True ` if the ` Message ` is set, ` False ` if ` .clear() ` has
1186
- beein issued.
1187
+ been issued.
1187
1188
* ` clear() ` Clears the triggered status. At least one task waiting on the
1188
1189
message should issue ` clear() ` .
1189
1190
* ` value() ` Return the payload.
1190
1191
1191
1192
Asynchronous Method:
1192
- * ` wait ` Pause until message is triggered. You can also ` await ` the message as
1193
- per the examples.
1193
+ * ` wait() ` Pause until message is triggered. You can also ` await ` the message
1194
+ as per the examples.
1194
1195
1195
1196
The following example shows multiple tasks awaiting a ` Message ` .
1196
1197
``` python
You can’t perform that action at this time.
0 commit comments