AstyanaxClient.getKeyspace(keyspace).prepareQuery(cfEntity)
.getAllRows()
.setRowLimit(1000)
.withColumnSlice(columnName)
.setRepeatLastToken(false)
.executeWithCallback(new RowCallback<String, String>(){
@Override
public void success(Rows<String, String> rows) {
.........
In some cases I need to stop the execution from the success method.
Is any way to do this, or I need to wait until all dataset is done paginating?
Thanks,
Eugene