All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rabbitmq.jms.client.Subscriptions Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

package com.rabbitmq.jms.client;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

class Subscriptions {

  private final Map nonDurableSubscriptions = new ConcurrentHashMap<>();
  private final Map durableSubscriptions = new ConcurrentHashMap<>();

  Subscription register(String name, String queue, boolean durable, boolean shared, String selector,
      boolean noLocal) {
    Map subscriptions =
        durable ? this.durableSubscriptions : this.nonDurableSubscriptions;
    return subscriptions.computeIfAbsent(name,
        n -> new Subscription(this, name, queue, durable, shared, selector, noLocal));
  }

  Subscription get(boolean durable, String name) {
    return durable ? durableSubscriptions.get(name) : nonDurableSubscriptions.get(name);
  }

  Subscription remove(boolean durable, String name) {
    return durable ? this.durableSubscriptions.remove(name)
        : this.nonDurableSubscriptions.remove(name);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy