use of org.apache.activemq.artemis.core.management.impl.AcceptorControlImpl in project activemq-artemis by apache.
the class ManagementServiceImpl method registerAcceptor.
@Override
public synchronized void registerAcceptor(final Acceptor acceptor, final TransportConfiguration configuration) throws Exception {
ObjectName objectName = objectNameBuilder.getAcceptorObjectName(configuration.getName());
AcceptorControl control = new AcceptorControlImpl(acceptor, storageManager, configuration);
registerInJMX(objectName, control);
registerInRegistry(ResourceNames.ACCEPTOR + configuration.getName(), control);
}
Aggregations