Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type RandomIterator ¶ added in v0.2.8
type RandomIterator struct {
// contains filtered or unexported fields
}
RandomIterator is an iterator that generates records containing a large volume of random data. Each record will be of the form:
"id" => an int64 counter, incremented on each call to Next "data" => a []byte slice of length 1MB filled with random data
Note that a RandomIterator will generate an infinite number of records. You must wrap it in some form of limiting iterator.
func (*RandomIterator) Close ¶ added in v0.2.8
func (itr *RandomIterator) Close() error
Close closes the iterator, preventing further iteration.
func (*RandomIterator) Err ¶ added in v0.2.8
func (*RandomIterator) Err() error
Err returns the last error, if any, encountered during iteration. Err may be called after Close.
func (*RandomIterator) Next ¶ added in v0.2.8
func (itr *RandomIterator) Next() bool
Next advances the iterator. Returns true on successful advance of the iterator; false otherwise. Next or NextContext must be called before the first call to Scan.
func (*RandomIterator) NextContext ¶ added in v0.2.8
func (itr *RandomIterator) NextContext(ctx context.Context) (bool, error)
NextContext advances the iterator. Returns true on successful advance of the iterator; false otherwise. Next or NextContext must be called before the first call to Scan.