Open pjfanning opened 7 months ago
Ok so yes:
sharedBoundedPool()
is to be global, non-configurable, instance -- so I am not sure how it'd work when multiple factories tried to get shared instance with different configuration.I guess partly this is due to connotations of "shared" -- I went back and forth between "global" and "shared". It really means "global"; and not something constructed on-demand for sharing. It's a global singleton.
sharedBoundedPool(int)
where users choose the size?