Closed anandcpadiya closed 7 years ago
Hi @anandcpadiya , you limit the number of records returned by passing a value for take() and pass a continuation token or select on certain values.
ie final ResultSegment result = table.executeSegmented( TableQuery.from(Class1.class).select(new String[] { "A", "C" }).take(25), null, options, null); result.getResults();
Hi @anandcpadiya , you limit the number of records returned by passing a value for take() and pass a continuation token or select on certain values.
ie final ResultSegment result = table.executeSegmented(
TableQuery.from(Class1.class).select(new String[] { "A", "C" }).take(25), null, options, null);
result.getResults();