kumoai.connector.SourceTableFuture#
- class kumoai.connector.SourceTableFuture[source]#
Bases:
KumoFuture[SourceTable]A representation of an on-going
SourceTablegeneration 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:
- future()[source]#
Returns the
concurrent.futures.Futureobject wrapped by this future. It is not recommended to access this object directly.- Return type:
Future[SourceTable]
- done()#
Returns
Trueif this future has been resolved withresult(), orFalseif this future is still in-progress. Note that this method will returnTrueif the future is complete, but in a failed state, and that this method will returnFalseif the job is complete, but the future has not been awaited.- Return type: