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: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ReactiveChangeStreamOperation.java
+15-6
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
29
29
/**
30
30
* {@link ReactiveChangeStreamOperation} allows creation and execution of reactive MongoDB
31
-
* <a href="https://docs.mongodb.com/manual/changeStreams/">Change Stream</a> operations in a fluent API * style. <br />
31
+
* <a href="https://docs.mongodb.com/manual/changeStreams/">Change Stream</a> operations in a fluent API style. <br />
32
32
* The starting {@literal domainType} is used for mapping a potentially given
33
33
* {@link org.springframework.data.mongodb.core.aggregation.TypedAggregation} used for filtering. By default, the
34
34
* originating {@literal domainType} is also used for mapping back the result from the {@link org.bson.Document}.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ReactiveChangeStreamOperationSupport.java
+20-5
Original file line number
Diff line number
Diff line change
@@ -54,14 +54,14 @@ class ReactiveChangeStreamOperationSupport implements ReactiveChangeStreamOperat
54
54
public <T> ReactiveChangeStream<T> changeStream(Class<T> domainType) {
55
55
56
56
Assert.notNull(domainType, "DomainType must not be null!");
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/kotlin/org/springframework/data/mongodb/core/ReactiveChangeStreamOperationExtensions.kt
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/ReactiveChangeStreamOperationSupportTests.java
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/ReactiveChangeStreamOperationSupportUnitTests.java
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/ReactiveChangeStreamOperationExtensionsTests.kt
0 commit comments