-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
GH-3034: IQ API's for remote state stores #3089
Conversation
Fixes: spring-projects#3034 spring-projects#3034 * Kafka Streams interactive query API's for accessing remote state stores.
}); | ||
} | ||
|
||
private void primeKafkaStreamsObject() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setupKafkaStreams()
or populate
?
I don't see a reason in Object
suffix at all.
And never saw prime
as a verb 😃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prime can be a verb, but I get your point:)
* If this property - `application.server` - is not available from the end-user application, then null is returned. | ||
* @return the current {@link HostInfo} | ||
*/ | ||
public HostInfo getCurrentKafkaStreamsApplicationHostInfo() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Nullable
} | ||
|
||
/** | ||
* Gets the current {@link HostInfo} where this Kafka Streams application is running on. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Method Javadocs must be imperative.
Kinda we give a command to do from the first verb.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
But we cannot merge for now since GH is out of order right now: https://www.githubstatus.com/
Fixes: #3034
#3034