質問編集履歴
2
やりたいことをソースに書き込みました
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,9 +32,13 @@
|
|
32
32
|
|
33
33
|
with ThreadPoolExecutor(max_workers=1, thread_name_prefix="thread") as executor:
|
34
34
|
|
35
|
-
response = await ws.recv()
|
35
|
+
response = await ws.recv()# ここを滞りなく実行したいです。
|
36
36
|
|
37
37
|
board = json.loads(response)
|
38
|
+
|
39
|
+
print(board) # スレッドのバックグラウンド処理とは別に、このプリントだけはリアルタイムで表示したい。
|
40
|
+
|
41
|
+
|
38
42
|
|
39
43
|
executor.map(event, board.get('id'))
|
40
44
|
|
1
タイトルを修正しました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
threadPl
|
1
|
+
threadPoolExecutorの使い方について
|
test
CHANGED
File without changes
|