Some datastore like MongoDB return an object (
DBCursor
) that should be closed when we have finished to loop accross the results of a native query.
Right now we are returning an
Iterable<Tuple>
but it should be something like
TupleCursor extends Iterable<Tuple>, Closeable