private final String mbeanName;
public JMXEnabledSEPExecutor(int poolSize, int maxQueuedLength, String name, String jmxPath)
{
super(JMXEnabledSharedExecutorPool.this, poolSize, maxQueuedLength);
metrics = new SEPMetrics(this, jmxPath, name);
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
mbeanName = "org.apache.cassandra." + jmxPath + ":type=" + name;
try