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
F18380373: D9554.id.diff
Thu, Aug 28, 5:38 PM
F18363056: D9554.diff
Wed, Aug 27, 3:35 PM
Unknown Object (File)
Jun 9 2025, 2:25 AM
Unknown Object (File)
May 6 2025, 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
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).