
com.mongodb.reactivestreams.client.internal.ChangeStreamPublisherImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-reactivestreams
Show all versions of mongodb-driver-reactivestreams
A Reactive Streams implementation of the MongoDB Java driver
/*
* Copyright 2015 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.reactivestreams.client.internal;
import com.mongodb.Block;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.async.client.ChangeStreamIterable;
import com.mongodb.client.model.Collation;
import com.mongodb.client.model.changestream.ChangeStreamDocument;
import com.mongodb.client.model.changestream.FullDocument;
import com.mongodb.reactivestreams.client.ChangeStreamPublisher;
import org.bson.BsonDocument;
import org.bson.BsonTimestamp;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import java.util.concurrent.TimeUnit;
import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.async.client.Observables.observe;
final class ChangeStreamPublisherImpl implements ChangeStreamPublisher {
private final ChangeStreamIterable wrapped;
ChangeStreamPublisherImpl(final com.mongodb.async.client.ChangeStreamIterable wrapped) {
this.wrapped = notNull("wrapped", wrapped);
}
@Override
public ChangeStreamPublisher fullDocument(final FullDocument fullDocument) {
wrapped.fullDocument(fullDocument);
return this;
}
@Override
public ChangeStreamPublisher resumeAfter(final BsonDocument resumeToken) {
wrapped.resumeAfter(resumeToken);
return this;
}
@Override
public ChangeStreamPublisher startAtOperationTime(final BsonTimestamp startAtOperationTime) {
wrapped.startAtOperationTime(startAtOperationTime);
return this;
}
@Override
public ChangeStreamPublisher maxAwaitTime(final long maxAwaitTime, final TimeUnit timeUnit) {
wrapped.maxAwaitTime(maxAwaitTime, timeUnit);
return this;
}
@Override
public ChangeStreamPublisher collation(final Collation collation) {
wrapped.collation(collation);
return this;
}
@Override
public Publisher withDocumentClass(final Class clazz) {
return new ObservableToPublisher(observe(wrapped.withDocumentClass(clazz)));
}
@Override
public ChangeStreamPublisher batchSize(final int batchSize) {
wrapped.batchSize(batchSize);
return this;
}
@Override
public Publisher> first() {
return new ObservableToPublisher>(observe(
new Block>>() {
@Override
public void apply(final SingleResultCallback> callback) {
wrapped.first(callback);
}
}));
}
@Override
public void subscribe(final Subscriber super ChangeStreamDocument> s) {
new ObservableToPublisher>(observe(wrapped)).subscribe(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy