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

io.vlingo.cluster.model.attribute.AttributeSetRepository Maven / Gradle / Ivy

Go to download

Cluster management for reactive, scalable resiliency of JVM tools and applications running on VLINGO XOOM Actors.

There is a newer version: 1.7.5
Show newest version
// Copyright © 2012-2020 VLINGO LABS. All rights reserved.
//
// 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/.

package io.vlingo.cluster.model.attribute;

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

public final class AttributeSetRepository {
  private final Map all;
  
  AttributeSetRepository() {
    this.all = new ConcurrentHashMap<>(16, 0.75f, 16);
  }

  void add(final AttributeSet set) {
    all.put(set.name, set);
  }

  Collection all() {
    return new ArrayList<>(all.values());
  }

  AttributeSet attributeSetOf(final String name) {
    return all.getOrDefault(name, AttributeSet.None);
  }

  void remove(final String name) {
    all.remove(name);
  }

  void removeAll() {
    all.clear();
  }

  void syncWith(final AttributeSet set) {
    all.put(set.name, set);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy