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

/**
 * An endpoint in a Vespa application {@link TestDeployment}, which also translates {@link Feed}s to {@link Digest}s.
 *
 * @author jonmv
 */
public interface TestEndpoint extends Endpoint {

    /** Sends the given Feed to this TestEndpoint, blocking until it is digested, and returns a feed report. */
    Digest digest(Feed feed);

}