All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.documentdb.internal.query.QueryExecutionContext Maven / Gradle / Ivy

package com.microsoft.azure.documentdb.internal.query;

import java.util.Iterator;
import java.util.List;
import java.util.Map;

import com.microsoft.azure.documentdb.DocumentClientException;
import com.microsoft.azure.documentdb.Resource;

/**
 * Defines a set of operations to support query execution in the Azure Cosmos DB database service.
 */
public interface QueryExecutionContext extends Iterator {
    public Map getResponseHeaders();

    public List fetchNextBlock() throws DocumentClientException;
    
    public void onNotifyStop();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy