SparkseePython
6.0.2
|
Public Member Functions | |
def | next (self) |
Gets the next KeyValue pair. More... | |
def | next (self, kv) |
Gets the next KeyValue pair. More... | |
def | has_next (self) |
Checks if the KeyValues has more KeyValue pairs. More... | |
def | close (self) |
Closes the KeyValues instance. More... | |
def | __next__ (self) |
Used in next() More... | |
def | is_closed (self) |
Gets if KeyValues instance has been closed or not. More... | |
Value set class.
This is a set of Value instances, that is there is no duplicated elements.
Use a ValuesIterator to traverse all the elements into the set.
When the Values instance is closed, it closes all existing and non-closed ValuesIterator instances too.
def sparksee.KeyValues.__next__ | ( | self | ) |
Used in next()
def sparksee.KeyValues.close | ( | self | ) |
Closes the KeyValues instance.
It must be called to ensure the integrity of all data.
def sparksee.KeyValues.has_next | ( | self | ) |
def sparksee.KeyValues.is_closed | ( | self | ) |
def sparksee.KeyValues.next | ( | self | ) |
Gets the next KeyValue pair.
Referenced by sparksee.KeyValues.next().
def sparksee.KeyValues.next | ( | self, | |
kv | |||
) |
Gets the next KeyValue pair.
kv | Returns the next KeyValue pair |
References sparksee.KeyValues.next().