310311312313314315316
/** * Creates and returns a {@link ClientRowIterator} instance. * {@inheritDoc} */ public RowIterator getRowIterator(RemoteIterator remote) { return new ClientRowIterator(remote, this); }
309310311312313314315
343344345346347348349
/** * Creates and returns a {@link ClientRowIterator} instance. * {@inheritDoc} */ public RowIterator getRowIterator(Session session, RemoteIterator remote) { return new ClientRowIterator(session, remote, this); }
315316317318319320321
317318319320321322323