pulsar-client-reactive-api/src/main/java/org/apache/pulsar/reactive/client/api/MutableReactiveMessageConsumerSpec.java [192:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	@Override
	public List<String> getTopicNames() {
		return this.topicNames;
	}

	/**
	 * Sets the topics to subscribe to.
	 * @param topicNames the topics to subscribe to.
	 */
	public void setTopicNames(List<String> topicNames) {
		this.topicNames = topicNames;
	}

	@Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pulsar-client-reactive-api/src/main/java/org/apache/pulsar/reactive/client/api/MutableReactiveMessageReaderSpec.java [77:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	@Override
	public List<String> getTopicNames() {
		return this.topicNames;
	}

	/**
	 * Sets the topics to read from.
	 * @param topicNames the topic names
	 */
	public void setTopicNames(List<String> topicNames) {
		this.topicNames = topicNames;
	}

	@Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



