Skip to content

Commit

Permalink
Allow setting of start time for query start key
Browse files Browse the repository at this point in the history
  • Loading branch information
ghelmling committed Jan 29, 2010
1 parent 2f0f999 commit 5df1302
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/java/meetup/beeno/Query.java
Expand Up @@ -65,6 +65,15 @@ public Query<T> start(byte[] keybytes) {
return this;
}

/**
* Sets the timestamp portion to use in constructing
* start keys for scanners
*/
public Query<T> startTime(Long time) {
this.opts.setStartTime(time);
return this;
}

/**
* Defines an expression to be used in filtering query results
* @param expression
Expand Down

0 comments on commit 5df1302

Please sign in to comment.