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

net.ravendb.client.documents.session.operations.lazy.ILazyOperation Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.documents.session.operations.lazy;

import net.ravendb.client.documents.commands.multiGet.GetRequest;
import net.ravendb.client.documents.commands.multiGet.GetResponse;
import net.ravendb.client.documents.queries.QueryResult;

public interface ILazyOperation {
    GetRequest createRequest();
    Object getResult();
    QueryResult getQueryResult();
    boolean isRequiresRetry();
    void handleResponse(GetResponse response);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy