You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Common/docs/Event/EventEmitter/classes/EventEmitter.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
# Class: EventEmitter
8
8
9
-
Defined in: [Event/EventEmitter.ts:63](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L63)
9
+
Defined in: [Event/EventEmitter.ts:63](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L63)
10
10
11
11
A feature-limited, but _mostly_ drop-in replacement for Node's EventEmitter type that is implemented using EventTarget.
Defined in: [Event/EventEmitter.ts:66](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L66)
58
+
Defined in: [Event/EventEmitter.ts:66](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L66)
59
59
60
60
#### Returns
61
61
@@ -71,7 +71,7 @@ Defined in: [Event/EventEmitter.ts:66](https://github.com/mcottontensor/PixelStr
Defined in: [Event/EventEmitter.ts:96](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L96)
74
+
Defined in: [Event/EventEmitter.ts:96](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L96)
75
75
76
76
Alias for `emitter.on(eventName, listener)`.
77
77
@@ -95,7 +95,7 @@ Alias for `emitter.on(eventName, listener)`.
95
95
96
96
> **emit**(`eventName`, ...`args`): `boolean`
97
97
98
-
Defined in: [Event/EventEmitter.ts:262](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L262)
98
+
Defined in: [Event/EventEmitter.ts:262](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L262)
99
99
100
100
Synchronously calls each of the listeners registered for the event named `eventName`, in the order they were registered, passing the supplied arguments
Defined in: [Event/EventEmitter.ts:196](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L196)
158
+
Defined in: [Event/EventEmitter.ts:196](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L196)
159
159
160
160
Alias for `emitter.removeListener()`.
161
161
@@ -179,7 +179,7 @@ Alias for `emitter.removeListener()`.
179
179
180
180
> **on**(`eventName`, `listener`): `this`
181
181
182
-
Defined in: [Event/EventEmitter.ts:115](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L115)
182
+
Defined in: [Event/EventEmitter.ts:115](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L115)
183
183
184
184
Adds the `listener` function to the end of the listeners array for the event
185
185
named `eventName`.
@@ -216,7 +216,7 @@ The callback function
216
216
217
217
> **once**(`eventName`, `listener`): `this`
218
218
219
-
Defined in: [Event/EventEmitter.ts:148](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L148)
219
+
Defined in: [Event/EventEmitter.ts:148](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L148)
220
220
221
221
Adds a **one-time**`listener` function for the event named `eventName`. The
222
222
next time `eventName` is triggered, this listener is removed and then invoked.
@@ -253,7 +253,7 @@ The callback function
253
253
254
254
> **removeAllListeners**(`eventName`): `this`
255
255
256
-
Defined in: [Event/EventEmitter.ts:204](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L204)
256
+
Defined in: [Event/EventEmitter.ts:204](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L204)
257
257
258
258
Removes all listeners, or those of the specified `eventName`.
259
259
Returns a reference to the `EventEmitter`, so that calls can be chained.
@@ -274,7 +274,7 @@ Returns a reference to the `EventEmitter`, so that calls can be chained.
Defined in: [Event/EventEmitter.ts:188](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Event/EventEmitter.ts#L188)
277
+
Defined in: [Event/EventEmitter.ts:188](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Event/EventEmitter.ts#L188)
278
278
279
279
Removes the specified `listener` from this EventEmitter.
Copy file name to clipboardExpand all lines: Common/docs/Logger/Logger/classes/LoggerContext.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
# Class: LoggerContext
8
8
9
-
Defined in: [Logger/Logger.ts:23](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L23)
9
+
Defined in: [Logger/Logger.ts:23](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L23)
10
10
11
11
The global context for the logger configuration.
12
12
This cannot be stored statically in the Logger class because we sometimes have multiple execution
@@ -29,12 +29,12 @@ to be shared with any Logger instances.
29
29
30
30
> **includeStack**: `boolean` = `true`
31
31
32
-
Defined in: [Logger/Logger.ts:25](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L25)
32
+
Defined in: [Logger/Logger.ts:25](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L25)
Defined in: [Logger/Logger.ts:24](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L24)
40
+
Defined in: [Logger/Logger.ts:24](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L24)
Copy file name to clipboardExpand all lines: Common/docs/Logger/Logger/classes/LoggerType.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
# Class: LoggerType
8
8
9
-
Defined in: [Logger/Logger.ts:44](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L44)
9
+
Defined in: [Logger/Logger.ts:44](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L44)
10
10
11
11
A basic console logger utilized by the Pixel Streaming frontend to allow
12
12
logging to the browser console.
@@ -31,15 +31,15 @@ logging to the browser console.
Defined in: [Logger/Logger.ts:45](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L45)
34
+
Defined in: [Logger/Logger.ts:45](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L45)
35
35
36
36
## Methods
37
37
38
38
### Debug()
39
39
40
40
> **Debug**(`message`): `void`
41
41
42
-
Defined in: [Logger/Logger.ts:60](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L60)
42
+
Defined in: [Logger/Logger.ts:60](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L60)
43
43
44
44
Logging output for debugging
45
45
@@ -65,7 +65,7 @@ the message to be logged
65
65
66
66
> **Error**(`message`): `void`
67
67
68
-
Defined in: [Logger/Logger.ts:93](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L93)
68
+
Defined in: [Logger/Logger.ts:93](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L93)
69
69
70
70
Error logging
71
71
@@ -91,7 +91,7 @@ the message to be logged
91
91
92
92
> **Info**(`message`): `void`
93
93
94
-
Defined in: [Logger/Logger.ts:71](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L71)
94
+
Defined in: [Logger/Logger.ts:71](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L71)
Defined in: [Logger/Logger.ts:50](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L50)
120
+
Defined in: [Logger/Logger.ts:50](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L50)
121
121
122
122
Set the log verbosity level
123
123
@@ -145,7 +145,7 @@ Set the log verbosity level
145
145
146
146
> **Warning**(`message`): `void`
147
147
148
-
Defined in: [Logger/Logger.ts:82](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L82)
148
+
Defined in: [Logger/Logger.ts:82](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L82)
Copy file name to clipboardExpand all lines: Common/docs/Logger/Logger/enumerations/LogLevel.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,44 +6,44 @@
6
6
7
7
# Enumeration: LogLevel
8
8
9
-
Defined in: [Logger/Logger.ts:9](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L9)
9
+
Defined in: [Logger/Logger.ts:9](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L9)
10
10
11
11
## Enumeration Members
12
12
13
13
### Debug
14
14
15
15
> **Debug**: `4`
16
16
17
-
Defined in: [Logger/Logger.ts:14](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L14)
17
+
Defined in: [Logger/Logger.ts:14](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L14)
18
18
19
19
***
20
20
21
21
### Disabled
22
22
23
23
> **Disabled**: `0`
24
24
25
-
Defined in: [Logger/Logger.ts:10](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L10)
25
+
Defined in: [Logger/Logger.ts:10](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L10)
26
26
27
27
***
28
28
29
29
### Error
30
30
31
31
> **Error**: `1`
32
32
33
-
Defined in: [Logger/Logger.ts:11](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L11)
33
+
Defined in: [Logger/Logger.ts:11](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L11)
34
34
35
35
***
36
36
37
37
### Info
38
38
39
39
> **Info**: `3`
40
40
41
-
Defined in: [Logger/Logger.ts:13](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L13)
41
+
Defined in: [Logger/Logger.ts:13](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L13)
42
42
43
43
***
44
44
45
45
### Warning
46
46
47
47
> **Warning**: `2`
48
48
49
-
Defined in: [Logger/Logger.ts:12](https://github.com/mcottontensor/PixelStreamingInfrastructure/blob/5fb85fd65be1623aae0ff7d1b463a27836d35a34/Common/src/Logger/Logger.ts#L12)
49
+
Defined in: [Logger/Logger.ts:12](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/e5168fb9b95d09ea76d485376bd036403b747ad2/Common/src/Logger/Logger.ts#L12)
0 commit comments