-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignal_async.py
93 lines (68 loc) · 2.31 KB
/
signal_async.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# examples/signal_async.py
"""
Async Signal Example
This example demonstrates the basic usage of TSignal with async slots:
1. Creating a signal
2. Connecting an async slot
3. Emitting a signal to async handler
Key Points:
- Demonstrates asynchronous signal-slot communication
- Shows how to use @t_slot decorator with async functions
- Illustrates handling of async slot execution in event loop
- Explains integration of signals with asyncio for non-blocking operations
"""
import asyncio
from tsignal import t_with_signals, t_signal, t_slot
@t_with_signals
class Counter:
"""
A simple counter class that emits a signal when its count changes.
"""
def __init__(self):
self.count = 0
@t_signal
def count_changed(self):
"""Signal emitted when count changes"""
def increment(self):
"""Increment counter and emit signal"""
self.count += 1
print(f"Counter incremented to: {self.count}")
self.count_changed.emit(self.count)
@t_with_signals
class AsyncDisplay:
"""
A simple display class that receives count updates and processes them asynchronously.
"""
def __init__(self):
self.last_value = None
@t_slot
async def on_count_changed(self, value):
"""Async slot that receives count updates"""
print(f"Display processing count: {value}")
# Simulate some async processing
await asyncio.sleep(1)
self.last_value = value
print(f"Display finished processing: {value}")
async def main():
"""
Main function to run the async counter example.
"""
# Create instances
counter = Counter()
display = AsyncDisplay()
# Connect signal to async slot
counter.count_changed.connect(display, display.on_count_changed)
print("Starting async counter example...")
print("Press Enter to increment counter, or 'q' to quit")
print("(Notice the 1 second delay in processing)")
while True:
# Get input asynchronously
line = await asyncio.get_event_loop().run_in_executor(None, input, "> ")
if line.lower() == "q":
break
# Increment counter which will emit signal
counter.increment()
# Give some time for async processing to complete
await asyncio.sleep(0.1)
if __name__ == "__main__":
asyncio.run(main())