assertEquals(TestCacheManagerFactory.ASYNC_EXEC_QUEUE_SIZE, transportThreadPool.queueLength());
BlockingThreadPoolExecutorFactory remoteCommandThreadPool =
cm.getCacheManagerConfiguration().transport().remoteCommandThreadPool().threadPoolFactory();
assertEquals(TestCacheManagerFactory.MAX_REQ_EXEC_THREADS, remoteCommandThreadPool.maxThreads());
assertEquals(TestCacheManagerFactory.KEEP_ALIVE, remoteCommandThreadPool.keepAlive());
BlockingThreadPoolExecutorFactory totalOrderThreadPool =
cm.getCacheManagerConfiguration().transport().totalOrderThreadPool().threadPoolFactory();
assertEquals(16, totalOrderThreadPool.maxThreads());
assertEquals(1, totalOrderThreadPool.coreThreads());