Increase default work queue size.

Fixes #5244
This commit is contained in:
Gunnar Beutner 2013-11-29 15:27:11 +01:00
parent 6e84800538
commit dd200d0937
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class I2_BASE_API WorkQueue
public:
typedef boost::function<void (boost::exception_ptr)> ExceptionCallback;
WorkQueue(size_t maxItems = 25000);
WorkQueue(size_t maxItems = 2500000);
~WorkQueue(void);
void Enqueue(const WorkCallback& callback, bool allowInterleaved = false);