I made a custom ThreadPool optimized for my specific needs. However, when there are multiple AppDomains in the process, the CLR ThreadPool is able to be shared across all the AppDomains and I would like to be able to reproduce this behavior.
This could be done using MarshalByRefObject and Remoting in order to create a distributed ThreadPool, but I fear that it will add unwanted overhead since the key goal of the custom thread pool is performance.
Another theoretical solution would be to hack the AppDomain memory boundary using an unmanaged object. If I m correct, the memory boundary in AppDomain only apply to managed objects, so there could be one managed wrapper in each AppDomain all pointing to the same unmanaged object.
So my questions are:
- Is there a way to make a custom thread pool using remoting with minimal overhead?
- If not, is it possible to share an unmanaged object across AppDomain?