public class FindPublishersKt
@NotNull
public static <T> com.mongodb.reactivestreams.client.FindPublisher<T> filter(@NotNull
com.mongodb.reactivestreams.client.FindPublisher<T> $this$filter,
@NotNull
java.lang.String filter)
Sets the query filter to apply to the query.
filter - the filter, which may be null@NotNull
public static <T> com.mongodb.reactivestreams.client.FindPublisher<T> projection(@NotNull
com.mongodb.reactivestreams.client.FindPublisher<T> $this$projection,
@NotNull
java.lang.String projection)
Sets a document describing the fields to return for all matching documents.
projection - the project document@NotNull
public static <T> com.mongodb.reactivestreams.client.FindPublisher<T> projection(@NotNull
com.mongodb.reactivestreams.client.FindPublisher<T> $this$projection,
@NotNull
kotlin.reflect.KProperty... projections)
Sets a document describing the fields to return for all matching documents.
projections - the properties of the returned fields@NotNull
public static <T> com.mongodb.reactivestreams.client.FindPublisher<T> sort(@NotNull
com.mongodb.reactivestreams.client.FindPublisher<T> $this$sort,
@NotNull
java.lang.String sort)
Sets the sort criteria to apply to the query.
sort - the sort criteria@NotNull
public static <I,O> com.mongodb.reactivestreams.client.FindPublisher<O> map(@NotNull
com.mongodb.reactivestreams.client.FindPublisher<I> $this$map,
@NotNull
kotlin.jvm.functions.Function1<? super I,? extends O> mapper)
Maps a value and returns the new FindPublisher.
@NotNull
public static <I,O> org.reactivestreams.Publisher<O> map(@NotNull
org.reactivestreams.Publisher<I> $this$map,
@NotNull
kotlin.jvm.functions.Function1<? super I,? extends O> mapper)