blob: 21552558f9cd0cbaaa197b2d32f26be638a579c5 [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Laboratory
*
* 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;
import com.google.common.collect.Sets;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
/**
* Test implementation of topic.
*/
public class TestTopic<T> implements Topic<T> {
private final String name;
private final Set<Consumer<T>> callbacks = Sets.newConcurrentHashSet();
public TestTopic(String name) {
this.name = name;
}
@Override
public CompletableFuture<Void> publish(T message) {
callbacks.forEach(c -> c.accept(message));
return CompletableFuture.completedFuture(null);
}
@Override
public CompletableFuture<Void> subscribe(Consumer<T> callback) {
callbacks.add(callback);
return CompletableFuture.completedFuture(null);
}
@Override
public CompletableFuture<Void> unsubscribe(Consumer<T> callback) {
callbacks.remove(callback);
return CompletableFuture.completedFuture(null);
}
@Override
public String name() {
return name;
}
@Override
public Type primitiveType() {
return Type.TOPIC;
}
}