summaryrefslogtreecommitdiffstats
path: root/tenant-cd/src/main/java/com/yahoo/vespa/tenant/cd/TestEndpoint.java
blob: 479ae1d17d290d21f7f4266846db545062da1ab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yahoo.vespa.tenant.cd;

import java.util.concurrent.Future;

/**
 * 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);

}