Skip to content

chore: update comment to reflect change in interface #2512

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

Merged
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 @@ -8,10 +8,9 @@
import io.javaoperatorsdk.operator.processing.dependent.Matcher.Result;

/**
* Manages dynamic number of resources created for a primary resource. Since the point of a bulk
* dependent resource is to manage the number of secondary resources dynamically it implement
* {@link Creator} and {@link Deleter} interfaces out of the box. A concrete dependent resource can
* implement additionally also {@link Updater}.
* Manages dynamic number of resources created for a primary resource. A dependent resource
* implementing this interface will typically also implement one or more additional interfaces such
* as {@link Creator}, {@link Updater}, {@link Deleter}.
*
* @param <R> the dependent resource type
* @param <P> the primary resource type
Expand Down
Loading