/*
* Copyright 2008-present 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.client.gridfs;
import com.mongodb.Block;
import com.mongodb.Function;
import com.mongodb.client.FindIterable;
import com.mongodb.client.MongoCursor;
import com.mongodb.client.MongoIterable;
import com.mongodb.client.gridfs.model.GridFSFile;
import com.mongodb.client.model.Collation;
import com.mongodb.lang.Nullable;
import org.bson.conversions.Bson;
import java.util.Collection;
import java.util.concurrent.TimeUnit;
class GridFSFindIterableImpl implements GridFSFindIterable {
private final FindIterable<GridFSFile> underlying;
GridFSFindIterableImpl(final FindIterable<GridFSFile> underlying) {
this.underlying = underlying;
}
@Override
public GridFSFindIterable sort(@Nullable final Bson sort) {
underlying.sort(sort);
return this;
}
@Override
public GridFSFindIterable skip(final int skip) {
underlying.skip(skip);
return this;
}
@Override
public GridFSFindIterable limit(final int limit) {
underlying.limit(limit);
return this;
}
@Override
public GridFSFindIterable filter(@Nullable final Bson filter) {
underlying.filter(filter);
return this;
}
@Override
public GridFSFindIterable maxTime(final long maxTime, final TimeUnit timeUnit) {
underlying.maxTime(maxTime, timeUnit);
return this;
}
@Override
public GridFSFindIterable batchSize(final int batchSize) {
underlying.batchSize(batchSize);
return this;
}
@Override
public GridFSFindIterable collation(@Nullable final Collation collation) {
underlying.collation(collation);
return this;
}
@Override
public GridFSFindIterable noCursorTimeout(final boolean noCursorTimeout) {
underlying.noCursorTimeout(noCursorTimeout);
return this;
}
@Override
public MongoCursor<GridFSFile> iterator() {
return underlying.iterator();
}
@Override
public MongoCursor<GridFSFile> cursor() {
return iterator();
}
@Nullable
@Override
public GridFSFile first() {
return underlying.first();
}
@Override
public <U> MongoIterable<U> map(final Function<GridFSFile, U> mapper) {
return underlying.map(mapper);
}
@Override
public void forEach(final Block<? super GridFSFile> block) {
underlying.forEach(block);
}
@Override
public <A extends Collection<? super GridFSFile>> A into(final A target) {
return underlying.into(target);
}
}