Example usage for com.mongodb.client MongoIterable interface-usage

List of usage examples for com.mongodb.client MongoIterable interface-usage

Introduction

In this page you can find the example usage for com.mongodb.client MongoIterable interface-usage.

Usage

From source file io.dirigible.mongodb.jdbc.util.ListMongoIterable.java

public class ListMongoIterable implements MongoIterable<String> {

    List<String> entries;

    public ListMongoIterable(List<String> backingList) {
        this.entries = backingList;