Page MenuHomePhabricator

Don't explicitly keep track of `_activeListenerCount` in the Aphlict server.
ClosedPublic

Authored by joshuaspence on Jun 15 2014, 7:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 6, 3:57 AM
Unknown Object (File)
Apr 27 2025, 7:33 PM
Unknown Object (File)
Apr 26 2025, 7:20 PM
Unknown Object (File)
Apr 24 2025, 2:24 PM
Unknown Object (File)
Apr 17 2025, 9:52 AM
Unknown Object (File)
Apr 14 2025, 12:01 AM
Unknown Object (File)
Apr 9 2025, 10:54 AM
Unknown Object (File)
Apr 8 2025, 5:28 PM
Subscribers

Details

Summary

The _activeListenerCount variable is overkill, we should be able to achieve the same result using Object.keys(this._listeners).length.

Test Plan

Mucked around in a NodeJS shell.

> Object.keys({}).length
0
> Object.keys({foo: 'bar'}).length
1
> Object.keys({1: 'foo', 2: 'bar'}).length
2

Diff Detail

Repository
rP Phabricator
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

joshuaspence retitled this revision from to Don't explicitly keep track of `_activeListenerCount` in the Aphlict server..
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.
epriestley edited edge metadata.
This revision is now accepted and ready to land.Jun 15 2014, 7:13 PM
joshuaspence updated this revision to Diff 22908.

Closed by commit rP279a0e53717e (authored by @joshuaspence).