1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / datastore / QueryRunner.java
blob5320fdabefe4d6456c1182269ec2e3e048520926
1 package com.google.appengine.api.datastore;
3 /**
4 * An interface for constructing and serializing and sending out queries. This code
5 * is dependent on the wire format and specification.
6 */
7 interface QueryRunner {
8 QueryResultsSource runQuery(
9 FetchOptions fetchOptions, Query query, Transaction txn);