ARTEMIS-1988 Do not clear Activate Callbacks on stop

This is reverting 36fc14a30d
This commit is contained in:
Martyn Taylor 2018-07-25 14:44:09 +01:00 committed by Clebert Suconic
parent fa2c5adda2
commit 66ba17846f
2 changed files with 2 additions and 49 deletions

View File

@ -1110,8 +1110,6 @@ public class ActiveMQServerImpl implements ActiveMQServer {
sessions.clear();
activateCallbacks.clear();
state = SERVER_STATE.STOPPED;
activationLatch.setCount(1);
@ -3187,4 +3185,5 @@ public class ActiveMQServerImpl implements ActiveMQServer {
public List<ActiveMQComponent> getExternalComponents() {
return externalComponents;
}
}
}

View File

@ -1,46 +0,0 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.artemis.tests.integration.server;
import org.apache.activemq.artemis.core.server.ActivateCallback;
import org.apache.activemq.artemis.core.server.ActiveMQServer;
import org.apache.activemq.artemis.core.server.impl.ActiveMQServerImpl;
import org.apache.activemq.artemis.tests.util.ActiveMQTestBase;
import org.junit.Test;
/**
* A simple test-case used for documentation purposes.
*/
public class ClearActivateCallbackTest extends ActiveMQTestBase {
protected ActiveMQServer server;
@Test
public void simpleTest() throws Exception {
server = createServer(false, createDefaultNettyConfig());
server.start();
int initialCallbackCount = ((ActiveMQServerImpl) server).getActivateCallbacks().size();
server.registerActivateCallback(new ActivateCallback() {
});
assertEquals(1, ((ActiveMQServerImpl) server).getActivateCallbacks().size() - initialCallbackCount);
server.stop();
assertEquals(0, ((ActiveMQServerImpl) server).getActivateCallbacks().size());
server.start();
assertEquals(initialCallbackCount, ((ActiveMQServerImpl) server).getActivateCallbacks().size());
}
}