Skip to content

Update comments in StatefulRedisModulesConnectionImpl #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import io.lettuce.core.protocol.PushHandler;

/**
* A thread-safe connection to a RedisTimeSeries server. Multiple threads may share
* A thread-safe connection to a RedisStack server. Multiple threads may share
* one {@link StatefulRedisModulesConnectionImpl}
* A {@link ConnectionWatchdog} monitors each connection and reconnects
* automatically until {@link #close} is called. All pending commands will be
Expand All @@ -43,7 +43,7 @@ public StatefulRedisModulesConnectionImpl(RedisChannelWriter writer, PushHandler

/**
* Create a new instance of {@link RedisModulesAsyncCommandsImpl}. Can be
* overriden to extend.
* overridden to extend.
*/
@Override
protected RedisModulesAsyncCommandsImpl<K, V> newRedisAsyncCommandsImpl() {
Expand All @@ -52,15 +52,15 @@ protected RedisModulesAsyncCommandsImpl<K, V> newRedisAsyncCommandsImpl() {

/**
* Create a new instance of {@link RedisModulesReactiveCommandsImpl}. Can be
* overriden to extend.
* overridden to extend.
*/
@Override
protected RedisReactiveCommandsImpl<K, V> newRedisReactiveCommandsImpl() {
return new RedisModulesReactiveCommandsImpl<>(this, codec);
}

/**
* Create a new instance of {@link RedisModulesCommands}. Can be overriden to
* Create a new instance of {@link RedisModulesCommands}. Can be overridden to
* extend.
*
* @return a new instance
Expand Down