summaryrefslogtreecommitdiffstats
path: root/tenant-cd/src/main/java/ai/vespa/hosted/cd/Visit.java
blob: 3bb2f59de9718c3133a880eacd9d8bfa05a7734a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package ai.vespa.hosted.cd;

import java.util.Map;

/**
 * A stateful visit operation against a {@link Endpoint}.
 *
 * @author jonmv
 */
public class Visit {

    // Delegate to a blocking iterator, which can be used for iteration as visit is ongoing.
    public Map<DocumentId, Document> documents() {
        return null;
    }

}