CursorImpl

@author <a href="mailto:julien@julienviet.com">Julien Viet</a>

Constructors

this
this(PreparedQueryImpl ps, Tuple params)
Undocumented in source.

Members

Functions

close
void close(AsyncVoidHandler completionHandler)
Undocumented in source. Be warned that the author may not have intended to support it.
hasMore
bool hasMore()
Undocumented in source. Be warned that the author may not have intended to support it.
read
void read(int count, RowSetHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Cursor

read
void read(int count, RowSetHandler handler)

Read rows from the cursor, the result is provided asynchronously to the {@code handler}.

hasMore
bool hasMore()

Returns {@code true} when the cursor has results in progress and the {@link #read} should be called to retrieve them.

close
void close()

Release the cursor. <p/> It should be called for prepared queries executed with a fetch size.

close
void close(AsyncVoidHandler completionHandler)

Like {@link #close()} but with a {@code completionHandler} called when the cursor has been released.

Meta