You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/AbstractControllerConfiguration.java
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ControllerConfigurationOverrider.java
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/DefaultControllerConfiguration.java
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/internal/CustomResourceEventFilter.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ public interface CustomResourceEventFilter<T extends CustomResource> {
18
18
* be propagated to the controller or not.
19
19
*
20
20
* @param configuration the target controller's configuration
21
-
* @param oldResource the old version of the resource
21
+
* @param oldResource the old version of the resource, null if no old resource available
22
22
* @param newResource the new version of the resource
23
23
* @return {@code true} if the change needs to be propagated to the controller, {@code false}
24
24
* otherwise
@@ -28,7 +28,7 @@ public interface CustomResourceEventFilter<T extends CustomResource> {
28
28
/**
29
29
* Combines this filter with the provided one with an AND logic, i.e. the resulting filter will
30
30
* only accept the change if both this and the other filter accept it, reject it otherwise.
31
-
*
31
+
*
32
32
* @param other the possibly {@code null} other filter to combine this one with
33
33
* @return a composite filter implementing the AND logic between this and the provided filter
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/internal/CustomResourceEventFilters.java
+80-19Lines changed: 80 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ public final class CustomResourceEventFilters {
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/internal/CustomResourceEventSource.java
0 commit comments