public abstract class RowListenerAdapter extends Object implements RowListener
| Constructor and Description | 
|---|
RowListenerAdapter()  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
next(Map<String,Object> row)
Implementations of this interface can return "false" from the next() method in order to stop fetching more results from DB. 
 | 
abstract void | 
onNext(Map<String,Object> row)
Called when a new row is encountered. 
 | 
public final boolean next(Map<String,Object> row)
RowListenernext in interface RowListenerrow - Map instance containing values for a row. Keys are names of columns and values are .. values.Copyright © 2020 JavaLite. All rights reserved.