Created
January 10, 2020 12:06
-
-
Save brachi-wernick/384f2d4e731f557af395e2a01ce8ad07 to your computer and use it in GitHub Desktop.
RedisOptions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface RedisOptions extends PipelineOptions { | |
ValueProvider<String> getRedisHost(); | |
void setRedisHost(ValueProvider<String> value); | |
ValueProvider<Integer> getRedisPort(); | |
void setRedisPort(ValueProvider<Integer> value); | |
@Default.InstanceFactory(RedisClientFactory.class) | |
RedissonClient getRedissonClient(); | |
void setRedissonClient(RedissonClient value); | |
ValueProvider<String> getEncryptedKeysBucketName(); | |
void setEncryptedKeysBucketName(ValueProvider<String> value); | |
ValueProvider<String> getTargetProjectName(); | |
void setTargetProjectName(ValueProvider<String> value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment