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 1a70de0 commit c39d80fCopy full SHA for c39d80f
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/expectation/Expectation.java
@@ -23,6 +23,11 @@
23
24
import static io.javaoperatorsdk.operator.api.reconciler.Experimental.API_MIGHT_CHANGE;
25
26
+/**
27
+ * Expectation is basically a named predicate, that has access to the reconciliation context.
28
+ * Therefore, access to all caches, so can check current state of all the relevant resources. Name
29
+ * is used to distinguish in reconciliation what is the actual expectation for which we wait for.
30
+ */
31
@Experimental(API_MIGHT_CHANGE)
32
public interface Expectation<P extends HasMetadata> {
33
0 commit comments