2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: EventEmitter.once
|
|
|
|
---
|
|
|
|
|
|
|
|
# EventEmitter.once() method
|
|
|
|
|
|
|
|
Like `on` but the listener will only be fired once and then it will be removed.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class EventEmitter {
|
2023-09-13 13:47:55 +00:00
|
|
|
once<Key extends keyof EventsWithWildcard<Events>>(
|
|
|
|
type: Key,
|
|
|
|
handler: Handler<EventsWithWildcard<Events>[Key]>
|
|
|
|
): this;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Key
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
the event you'd like to listen to
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
handler
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[Handler](./puppeteer.handler.md)<[EventsWithWildcard](./puppeteer.eventswithwildcard.md)<Events>\[Key\]>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
the handler function to run when the event occurs
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
2023-05-24 15:57:56 +00:00
|
|
|
this
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
`this` to enable you to chain method calls.
|