![JAR search and dependency download from the Maven repository](/logo.png)
org.nustaq.fastcast.config.TopicConf Maven / Gradle / Ivy
/*
* Copyright 2014 Ruediger Moeller.
*
* 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.nustaq.fastcast.config;
/**
* Created by ruedi on 04.12.14.
*/
public class TopicConf {
private int id; // will be promoted to pub/sub conf [is redundant]
private String name; // symbolic, for lookup
private PublisherConf pub;
private SubscriberConf sub;
public int getId() {
return id;
}
public TopicConf id(int id) {
this.id = id;
validateAfterRead();
return this;
}
public String getName() {
return name;
}
public TopicConf name(String name) {
this.name = name;
return this;
}
public PublisherConf getPublisher() {
return pub;
}
public TopicConf publisher(PublisherConf pub) {
this.pub = pub;
validateAfterRead();
return this;
}
public SubscriberConf getSub() {
return sub;
}
public TopicConf subscriber(SubscriberConf sub) {
this.sub = sub;
validateAfterRead();
return this;
}
public void validateAfterRead() {
if ( pub != null )
pub.topicId = id;
if ( sub != null )
sub.topicId = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy