method EventEmitter.prependOnceListener
Jump to headingEventEmitter.prependOnceListener<K>(): thisAdds a one-timelistener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this
listener is removed, and then invoked.
server.prependOnceListener('connection', (stream) => {
console.log('Ah, we have our first user!');
});
Returns a reference to the EventEmitter, so that calls can be chained.
Type Parameters Jump to heading
Parameters Jump to heading
Jump to headingeventName: Key<K, T>The name of the event.
Jump to headinglistener: Listener1<K, T>The callback function
Return Type Jump to heading
this