You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If its initializer throws an error or returns nil, it should retry initialization next time. This will be useful for allowing operations to gracefully fail and trying them again once appropriate.
This could also contain a minimum retry timeout, so that expensive initializers aren't rapidly called over and over if we know they failed for something that is more likely to work later (for instance, if an initializer fails because a network call failed, or it needs another program which is still starting, etc.)
The text was updated successfully, but these errors were encountered:
If its initializer throws an error or returns
nil
, it should retry initialization next time. This will be useful for allowing operations to gracefully fail and trying them again once appropriate.This could also contain a minimum retry timeout, so that expensive initializers aren't rapidly called over and over if we know they failed for something that is more likely to work later (for instance, if an initializer fails because a network call failed, or it needs another program which is still starting, etc.)
The text was updated successfully, but these errors were encountered: