Future
A Future defers the resolution of a value to the future. The value can be consumed by calling Future.await method which is expected to block the current thread. Therefore, never call Future.await on the same thread as it will result in a dead lock.
Functions
Properties
isCompleted
                        
                  Link copied to clipboard
                      
                    
                  Returns true if the future has completed and is ready to await.
Inheritors
JobFuture
                        
                Link copied to clipboard
                      
                    
                  ValueFuture
                        
                Link copied to clipboard
                      
                    
                  NativeFuture
                        
                Link copied to clipboard
                      DeferredFuture
                        
                Link copied to clipboard