Any method to dynamically set ThreadPool size for AgentConfigManager?

Hi Frank,
As title, is there any method to dynamically set ThreadPool size for AgentConfigManager?
For example, in SampleAgent class:

agent = new AgentConfigManager(new OctetString(MPv3.createLocalEngineID()),
                                   messageDispatcher,
                                   null,
                                   moServers,
                                   ThreadPool.create("SampleAgent", 3),
                                   configurationFactory,
                                   new DefaultMOPersistenceProvider(moServers,
                                                                    configFile),
                                   new EngineBootsCounterFile(bootCounterFile));

How to change the pool size to a larger number dynamically?
Seems ThreadPool class has no method to enlarge the size.

Thanks.

As for the ‘dynamically’, I mean I want to change the pool size after ‘agent’ is in running state.

This is not possible with the current implementation.