This closes #798
This commit is contained in:
commit
5f6aee1184
|
@ -36,6 +36,7 @@ import java.util.Map;
|
|||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.ConcurrentMap;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
|
@ -312,7 +313,7 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
|
||||
private final List<ActiveMQComponent> externalComponents = new ArrayList<>();
|
||||
|
||||
private final Map<String, AtomicInteger> connectedClientIds = new ConcurrentHashMap();
|
||||
private final ConcurrentMap<String, AtomicInteger> connectedClientIds = new ConcurrentHashMap();
|
||||
|
||||
// Constructors
|
||||
// ---------------------------------------------------------------------------------
|
||||
|
|
|
@ -1259,6 +1259,7 @@ public class ServerSessionImpl implements ServerSession, FailureListener {
|
|||
return send(getCurrentTransaction(), message, direct, noAutoCreateQueue);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RoutingStatus send(Transaction tx, final ServerMessage message, final boolean direct, boolean noAutoCreateQueue) throws Exception {
|
||||
|
||||
// If the protocol doesn't support flow control, we have no choice other than fail the communication
|
||||
|
|
Loading…
Reference in New Issue