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

org.onosproject.store.service.StorageService Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * Copyright 2015-present Open Networking Foundation
 *
 * Licensed 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.onosproject.store.service;

/**
 * Storage service.
 * 

* This service provides builders for various distributed primitives. *

* It is expected that services and applications will leverage the primitives indirectly provided by * this service for their distributed state management and coordination. */ public interface StorageService extends PrimitiveService { /** * Creates a new EventuallyConsistentMapBuilder. * * @param key type * @param value type * @return builder for an eventually consistent map */ EventuallyConsistentMapBuilder eventuallyConsistentMapBuilder(); /** * Creates a new ConsistentMapBuilder. * * @param key type * @param value type * @return builder for a consistent map */ ConsistentMapBuilder consistentMapBuilder(); /** * Creates a new ConsistentMapBuilder. * * @param value type * @return builder for a consistent map */ DocumentTreeBuilder documentTreeBuilder(); /** * Creates a new {@code AsyncConsistentTreeMapBuilder}. * * @param value type * @return builder for a async consistent tree map */ ConsistentTreeMapBuilder consistentTreeMapBuilder(); /** * Creates a new {@code AsyncConsistentSetMultimapBuilder}. * * @param key type * @param value type * @return builder for a set based async consistent multimap */ ConsistentMultimapBuilder consistentMultimapBuilder(); /** * Creates a new {@code AtomicCounterMapBuilder}. * * @param key type * @return builder for an atomic counter map */ AtomicCounterMapBuilder atomicCounterMapBuilder(); /** * Creates a new DistributedSetBuilder. * * @param set element type * @return builder for an distributed set */ DistributedSetBuilder setBuilder(); /** * Creates a new AtomicCounterBuilder. * * @return atomic counter builder */ AtomicCounterBuilder atomicCounterBuilder(); /** * Creates a new AtomicIdGeneratorBuilder. * * @return atomic ID generator builder */ AtomicIdGeneratorBuilder atomicIdGeneratorBuilder(); /** * Creates a new AtomicValueBuilder. * * @param atomic value type * @return atomic value builder */ AtomicValueBuilder atomicValueBuilder(); /** * Creates a new DistributedLockBuilder. * * @return lock builder */ DistributedLockBuilder lockBuilder(); /** * Creates a new LeaderElectorBuilder. * * @return leader elector builder */ LeaderElectorBuilder leaderElectorBuilder(); /** * Creates a new TopicBuilder. * * @param topic value type * @return topic builder */ TopicBuilder topicBuilder(); /** * Creates a new transaction context builder. * * @return a builder for a transaction context. */ TransactionContextBuilder transactionContextBuilder(); /** * Returns an instance of {@code AsyncAtomicCounter} with specified name. * @param name counter name * * @return AsyncAtomicCounter instance */ default AsyncAtomicCounter getAsyncAtomicCounter(String name) { return atomicCounterBuilder().withName(name).build(); } /** * Returns an instance of {@code AsyncAtomicIdGenerator} with specified name. * * @param name ID generator name * @return AsyncAtomicIdGenerator instance */ default AsyncAtomicIdGenerator getAsyncAtomicIdGenerator(String name) { return atomicIdGeneratorBuilder().withName(name).build(); } /** * Returns an instance of {@code AtomicCounter} with specified name. * @param name counter name * * @return AtomicCounter instance */ default AtomicCounter getAtomicCounter(String name) { return getAsyncAtomicCounter(name).asAtomicCounter(); } /** * Returns an instance of {@code AtomicIdGenerator} with specified name. * * @param name ID generator name * @return AtomicIdGenerator instance */ default AtomicIdGenerator getAtomicIdGenerator(String name) { return getAsyncAtomicIdGenerator(name).asAtomicIdGenerator(); } /** * Returns an instance of {@code WorkQueue} with specified name. * * @param work element type * @param name work queue name * @param serializer serializer * @return WorkQueue instance */ WorkQueue getWorkQueue(String name, Serializer serializer); /** * Returns an instance of {@code AsyncDocumentTree} with specified name. * * @param tree node value type * @param name document tree name * @param serializer serializer * @return AsyncDocumentTree instance */ AsyncDocumentTree getDocumentTree(String name, Serializer serializer); /** Returns a set backed instance of {@code AsyncConsistentMultimap} with * the specified name. * * @param name the multimap name * @param serializer serializer * @param key type * @param value type * @return set backed {@code AsyncConsistentMultimap} instance */ AsyncConsistentMultimap getAsyncSetMultimap(String name, Serializer serializer); /** * Returns an instance of {@code AsyncConsistentTreeMap} with the specified * name. * * @param name the treemap name * @param serializer serializer * @param value type * @return set backed {@code AsyncConsistentTreeMap} instance */ AsyncConsistentTreeMap getAsyncTreeMap(String name, Serializer serializer); /** * Returns an instance of {@code Topic} with specified name. * * @param topic message type * @param name topic name * @param serializer serializer * * @return Topic instance */ Topic getTopic(String name, Serializer serializer); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy