public interface Firehose extends Closeable
The implementation of this interface only needs to be minimally thread-safe. The three methods ##hasMore(), ##nextRow() and ##commit() are all called from the same thread. ##commit(), however, returns a callback which will be called on another thread, so the operations inside of that callback must be thread-safe.
boolean hasMore()
InputRow nextRow()
Runnable commit()
A simple implementation of this interface might do nothing when run() is called (in which case the same do-nothing instance can be returned every time), or a more complex implementation might clean up temporary resources that are no longer needed because of InputRows delivered by prior calls to ##nextRow().
Copyright © 2015. All rights reserved.