10000 GitHub - HowProgrammingWorks/Pool at 994df04d7e0f5c8237509110ba5e021fe0ab27fc
[go: up one dir, main page]

Skip to content

HowProgrammingWorks/Pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Object Pool

Фабрики и пулы объектов

See: 4-improved.js

Signature poolify(factory, min, norm, max)

  • factory - call to instantiate pool item
  • min - minimum amount to allocate new
  • norm - preallocated amount
  • max - maximum amount to limit pool
0