summaryrefslogtreecommitdiffstats
path: root/tenant-cd/src/main/java/ai/vespa/hosted/cd/Search.java
blob: a6c1d18859181965ec7f82236dee879dd78cdbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ai.vespa.hosted.cd;

import java.util.Map;

/**
 * The immutable result of sending a {@link Query} to a Vespa {@link Endpoint}.
 *
 * @author jonmv
 */
public class Search {

    // hits
    // coverage
    // searched
    // full?
    // results?
    // resultsFull?

    /** Returns the documents that were returned as the result, with iteration order as returned. */
    Map<DocumentId, Document> documents() {
        return null;
    }

}