org.redisson.RedissonShardedTopic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* 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.redisson;
import org.redisson.api.NameMapper;
import org.redisson.api.RFuture;
import org.redisson.api.RShardedTopic;
import org.redisson.api.listener.MessageListener;
import org.redisson.client.RedisPubSubListener;
import org.redisson.client.codec.Codec;
import org.redisson.client.codec.LongCodec;
import org.redisson.client.codec.StringCodec;
import org.redisson.client.protocol.RedisCommands;
import org.redisson.client.protocol.pubsub.PubSubType;
import org.redisson.command.CommandAsyncExecutor;
import org.redisson.misc.CompletableFutureWrapper;
import org.redisson.pubsub.PubSubConnectionEntry;
import java.util.concurrent.CompletableFuture;
/**
* Sharded Topic for Redis Cluster. Messages are delivered to message listeners connected to the same Topic.
*
* @author Nikita Koksharov
*
*/
public class RedissonShardedTopic extends RedissonTopic implements RShardedTopic {
public RedissonShardedTopic(CommandAsyncExecutor commandExecutor, String name) {
super(commandExecutor, name);
}
public RedissonShardedTopic(Codec codec, CommandAsyncExecutor commandExecutor, String name) {
super(codec, commandExecutor, name);
}
public RedissonShardedTopic(Codec codec, CommandAsyncExecutor commandExecutor, NameMapper nameMapper, String name) {
super(codec, commandExecutor, nameMapper, name);
}
public static RedissonTopic createRaw(Codec codec, CommandAsyncExecutor commandExecutor, String name) {
return new RedissonShardedTopic(codec, commandExecutor, NameMapper.direct(), name);
}
@Override
protected RFuture addListenerAsync(RedisPubSubListener> pubSubListener) {
CompletableFuture future = subscribeService.ssubscribe(codec, channelName, pubSubListener);
CompletableFuture f = future.thenApply(res -> {
return System.identityHashCode(pubSubListener);
});
return new CompletableFutureWrapper<>(f);
}
@Override
public RFuture publishAsync(Object message) {
String name = getName();
return commandExecutor.writeAsync(name, StringCodec.INSTANCE, RedisCommands.SPUBLISH, name, commandExecutor.encode(codec, message));
}
@Override
public RFuture removeListenerAsync(MessageListener> listener) {
CompletableFuture f = subscribeService.removeListenerAsync(PubSubType.SUNSUBSCRIBE, channelName, listener);
return new CompletableFutureWrapper<>(f);
}
@Override
public RFuture removeListenerAsync(Integer... listenerIds) {
CompletableFuture f = subscribeService.removeListenerAsync(PubSubType.SUNSUBSCRIBE, channelName, listenerIds);
return new CompletableFutureWrapper<>(f);
}
@Override
public RFuture removeAllListenersAsync() {
CompletableFuture f = subscribeService.removeAllListenersAsync(PubSubType.SUNSUBSCRIBE, channelName);
return new CompletableFutureWrapper<>(f);
}
@Override
public RFuture countSubscribersAsync() {
return commandExecutor.writeAsync(name, LongCodec.INSTANCE, RedisCommands.PUBSUB_SHARDNUMSUB, channelName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy