You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment oatpp doesn't have thread-pool implementation.
I found the Pool class - use it for a thread pool?
That pool is a kind of resource pool - it's used for ConnectionPool in ORM and Network. It also can be used for any resource.
But it's not suitable for threads - just because of the performance - you don't want to start-stop new threads in the thread pool.
Do I understand correctly that for this task I need to use the IOEventWorker?
You don't have to use it directly. Oatpp does that for you.
No description provided.
The text was updated successfully, but these errors were encountered: