回答編集履歴

10

図の位置調整

2020/02/26 15:26

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -108,7 +108,7 @@
108
108
 
109
109
 
110
110
 
111
- ![asyncAwaitDirect処理フロー](6cd56fa9889be0d58054327d1fe5fe08.png)
111
+ ![asyncAwaitDirect処理フロー](dc50ffd4efabd14b007717c0e1563eff.png)
112
112
 
113
113
 
114
114
 

9

補記

2020/02/26 15:26

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -109,3 +109,9 @@
109
109
 
110
110
 
111
111
  ![asyncAwaitDirect処理フロー](6cd56fa9889be0d58054327d1fe5fe08.png)
112
+
113
+
114
+
115
+ 実際の正確な処理の流れとは違う部分があるとは思いますが、だいたいの流れは理解できると思います。
116
+
117
+ Promiseキューの「終了」は該当Promseのresolveメソッド呼び出しのことです。

8

変数代入コード追記

2020/02/26 00:40

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,6 +1,98 @@
1
1
  asyncAwaitVariables は、最初の await の時点で 3つの処理が非同期並行動作しています。1番目の処理が終われば最初のawaitから復帰し、ほぼ同時に2番目も3番目も終わっていて、その後のawaitはすぐに復帰してきます。
2
2
 
3
3
  asyncAwaitDirect は、ひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するので、順次実行です。
4
+
5
+
6
+
7
+ asyncAwaitDirect の方も、一度変数に代入してみると違いが分かると思います。
8
+
9
+
10
+
11
+ ```js
12
+
13
+ 'use strict';
14
+
15
+
16
+
17
+ const start = new Date();
18
+
19
+ const callback = () => {
20
+
21
+ const end = new Date();
22
+
23
+ const lapseMs = end.getTime() - start.getTime();
24
+
25
+ return `${lapseMs}ミリ秒後`;
26
+
27
+ };
28
+
29
+ const createTimeoutPromise = (ms, callback) => {
30
+
31
+ return new Promise(resolve => {
32
+
33
+ setTimeout(() => {
34
+
35
+ resolve(callback());
36
+
37
+ }, ms);
38
+
39
+ });
40
+
41
+ };
42
+
43
+ const asyncAwaitVariables = async (ms, callback) => {
44
+
45
+ const results = [];
46
+
47
+ const promise0 = createTimeoutPromise(ms, callback);
48
+
49
+ const promise1 = createTimeoutPromise(ms, callback);
50
+
51
+ const promise2 = createTimeoutPromise(ms, callback);
52
+
53
+ results.push(await promise0);
54
+
55
+ results.push(await promise1);
56
+
57
+ results.push(await promise2);
58
+
59
+ console.log('asyncAwaitVariables', results);
60
+
61
+ };
62
+
63
+ const asyncAwaitDirect = async (ms, callback) => {
64
+
65
+ const results = [];
66
+
67
+ const promise0 = createTimeoutPromise(ms, callback);
68
+
69
+ results.push(await promise0);
70
+
71
+ const promise1 = createTimeoutPromise(ms, callback);
72
+
73
+ results.push(await promise1);
74
+
75
+ const promise2 = createTimeoutPromise(ms, callback);
76
+
77
+ results.push(await promise2);
78
+
79
+ console.log('asyncAwaitDirect...', results);
80
+
81
+ };
82
+
83
+ const main = () => {
84
+
85
+ const ms = 100;
86
+
87
+ asyncAwaitVariables(ms, callback);
88
+
89
+ asyncAwaitDirect(ms, callback);
90
+
91
+ };
92
+
93
+ main();
94
+
95
+ ```
4
96
 
5
97
 
6
98
 
@@ -14,8 +106,6 @@
14
106
 
15
107
  asyncAwaitDirect の処理シーケンスを書いてみました。
16
108
 
17
- 比較しやすいように変数代入処理を追加しています。
18
-
19
109
 
20
110
 
21
111
  ![asyncAwaitDirect処理フロー](6cd56fa9889be0d58054327d1fe5fe08.png)

7

図差し替え

2020/02/26 00:35

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
 
11
- ![asyncAwaitVariables処理フロー](1998e5ddae5b37dd15443cfb5f4e1f95.png)
11
+ ![asyncAwaitVariables処理フロー](f640d5accf4d66b7947a1d9a47ecdf46.png)
12
12
 
13
13
 
14
14
 
@@ -18,4 +18,4 @@
18
18
 
19
19
 
20
20
 
21
- ![asyncAwaitDirect処理フロー](0999f28577639bb3949a346a09be60e1.png)
21
+ ![asyncAwaitDirect処理フロー](6cd56fa9889be0d58054327d1fe5fe08.png)

6

asyncAwaitDirect の処理フロー追記

2020/02/25 16:05

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -9,3 +9,13 @@
9
9
 
10
10
 
11
11
  ![asyncAwaitVariables処理フロー](1998e5ddae5b37dd15443cfb5f4e1f95.png)
12
+
13
+
14
+
15
+ asyncAwaitDirect の処理シーケンスを書いてみました。
16
+
17
+ 比較しやすいように変数代入処理を追加しています。
18
+
19
+
20
+
21
+ ![asyncAwaitDirect処理フロー](0999f28577639bb3949a346a09be60e1.png)

5

asyncAwaitVariableの処理フロー追記

2020/02/25 13:56

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,11 @@
1
1
  asyncAwaitVariables は、最初の await の時点で 3つの処理が非同期並行動作しています。1番目の処理が終われば最初のawaitから復帰し、ほぼ同時に2番目も3番目も終わっていて、その後のawaitはすぐに復帰してきます。
2
2
 
3
3
  asyncAwaitDirect は、ひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するので、順次実行です。
4
+
5
+
6
+
7
+ asyncAwaitVariableの処理シーケンスを書いてみました。
8
+
9
+
10
+
11
+ ![asyncAwaitVariables処理フロー](1998e5ddae5b37dd15443cfb5f4e1f95.png)

4

説明文言変更

2020/02/25 13:24

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,3 @@
1
- asyncAwaitVariables は、最初 await するま 3つの処理非同期並列実
1
+ asyncAwaitVariables は、最初 await の時点で 3つの処理非同期並行動作しています。1番目の処理が終われば最初のawaitから復帰し、ほぼ同時に2番目も3番目も終わっていて、その後のawaitはすぐに復帰してます
2
2
 
3
- asyncAwaitDirect はひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するのだから順次実行。
3
+ asyncAwaitDirect はひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するので、順次実行です

3

補足

2020/02/24 15:31

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,3 @@
1
- asyncAwaitVariables は、最初に await するまでに 3つの処理を非同期実行できる。
1
+ asyncAwaitVariables は、最初に await するまでに 3つの処理を非同期並列実行できる。
2
2
 
3
3
  asyncAwaitDirect はひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するのだから順次実行。

2

補足

2020/02/24 13:49

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,3 @@
1
1
  asyncAwaitVariables は、最初に await するまでに 3つの処理を非同期実行できる。
2
2
 
3
- asyncAwaitDirect はひとつ終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するのだから順次実行。
3
+ asyncAwaitDirect はひとつ処理を呼び出して処理が終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するのだから順次実行。

1

補足

2020/02/24 13:48

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,3 @@
1
- 前者は3つ同実行。
1
+ asyncAwaitVariables 、最初に await するまでに 3つの処理を非実行できる
2
2
 
3
- 後者はひとつ終わるのを await で待って、2番目を実行してawaitで待って、3番目を実行するのだから順次実行。
3
+ asyncAwaitDirect はひとつ終わるのを await で待って、2番目を実行してawaitで終わるのを待って、3番目を実行するのだから順次実行。