blob: fc7c2f913e591a65721bfec0c7ddee794028cd04 [file] [log] [blame]
Aaron Kruglikoved88ff62016-08-01 16:02:09 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Aaron Kruglikoved88ff62016-08-01 16:02:09 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.store.service;
18
19import org.onosproject.store.primitives.DistributedPrimitiveBuilder;
20
21/**
22 * Builder for {@link ConsistentTreeMap}.
23 */
24public abstract class ConsistentTreeMapBuilder<V>
Jordan Halterman2c045992018-03-20 21:33:00 -070025 extends ConsistentTreeMapOptions<ConsistentTreeMapBuilder<V>, V>
26 implements DistributedPrimitiveBuilder<ConsistentTreeMap<V>> {
Aaron Kruglikoved88ff62016-08-01 16:02:09 -070027
28 /**
29 * Builds the distributed tree map based on the configuration options supplied
30 * to this builder.
31 *
32 * @return new distributed tree map
Ray Milkey3032af12016-08-30 13:16:03 -070033 * @throws java.lang.RuntimeException if a mandatory parameter is missing
Aaron Kruglikoved88ff62016-08-01 16:02:09 -070034 */
35 public abstract AsyncConsistentTreeMap<V> buildTreeMap();
36
37}