We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d27ef commit 76dd442Copy full SHA for 76dd442
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/AbstractEvent.java
@@ -0,0 +1,20 @@
1
+package io.javaoperatorsdk.operator.processing.event;
2
+
3
+import io.fabric8.kubernetes.client.CustomResource;
4
+import java.util.function.Predicate;
5
6
+/**
7
+ * @deprecated use {@link DefaultEvent} instead
8
+ */
9
+@Deprecated
10
+public class AbstractEvent extends DefaultEvent {
11
12
+ public AbstractEvent(String relatedCustomResourceUid, EventSource eventSource) {
13
+ super(relatedCustomResourceUid, eventSource);
14
+ }
15
16
+ public AbstractEvent(
17
+ Predicate<CustomResource> customResourcesSelector, EventSource eventSource) {
18
+ super(customResourcesSelector, eventSource);
19
20
+}
0 commit comments