Socket::select() should not be deprecated
I don't think Socket::select() should be deprecated. It's still useful for some use cases where one just needs to check a few sockets.
Even we are using it and this change forces us to do a lot more code changes. Though, we can compile POCO using POCO_SILENCE_DEPRECATED to suppress this warning. But this will be our last resort as this not only suppresses for Socket::select, but for others APIs too.
FYI - currently, we are using older version e.g. 1.11.x and migrating to 1.14.x.
select() was marked as deprecated in #1459.
It seems like a good idea to deprecate select().
it would make sense to keep it if we make it just a simple wrapper for the platform select(). Whoever needs poll, should use Socket::poll().
That would make sense. What I'd like to avoid is forcing people (including myself) to rewrite their code to use PollSet instead of select() for use cases where select() is just fine.