Skip to content

Instantly share code, notes, and snippets.

@brachi-wernick
Created January 10, 2020 12:06
Show Gist options
  • Save brachi-wernick/384f2d4e731f557af395e2a01ce8ad07 to your computer and use it in GitHub Desktop.
Save brachi-wernick/384f2d4e731f557af395e2a01ce8ad07 to your computer and use it in GitHub Desktop.
RedisOptions
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