Reputation: 6934
Is there a doc on how to migrate an indy9 solution to indy10?
We migrated our client pieces fine.
The server piece is actually a component we use (with sources) that uses:
IdCustomHTTPServer,
IdHTTPServer,
IdTCPServer,
IdThreadMgrPool,
Any hints/docs on how indy10 has rearranged itself would be v helpful.
Upvotes: 1
Views: 586
Reputation: 595369
Is there a doc on how to migrate an indy9 solution to indy10?
Not specifically, but IIRC there might be some pieces mentioned in the online documentation.
IdCustomHTTPServer,
IdHTTPServer,
IdTCPServer
Those exist in Indy 10.
IdThreadMgrPool,
That, on the other hand, was replaced with a new TIdSchedulerOfThreadPool
component.
Any hints/docs on how indy10 has rearranged itself would be v helpful.
Some of the big changes are:
Most of the TIdTCPConnection
methods were moved to the TIdIOHandler
class.
the TIdPeerThread
class was replaced with a new TIdContext
class.
TIdThreadMgr...
components were replaced with new TIdSchedulerOfThread...
components.
If you are having particular problems with the migration, ask questions about it.
Upvotes: 2