kumoai.connector.SourceTableFuture#
- class kumoai.connector.SourceTableFuture[source]#
Bases:
KumoFuture
[SourceTable
]A representation of an on-going
SourceTable
generation process.- result()[source]#
Returns the resolved state of the future.
- Raises:
Exception – If the future is complete but in a failed state due to an exception being raised, this method will raise the same exception.
- Return type:
- static __new__(cls, *args, **kwds)#
- done()#
Returns
True
if this future has been resolved withresult()
, orFalse
if this future is still in-progress. Note that this method will returnTrue
if the future is complete, but in a failed state, and that this method will returnFalse
if the job is complete, but the future has not been awaited.- Return type:
- future()[source]#
Returns the
concurrent.futures.Future
object wrapped by this future. It is not recommended to access this object directly.