Attende che il container sia disponibile e restituisce il contenitore richiesto.
Questo metodo bloccherà finché il contenitore non sarà disponibile.
pubblici
astratto
booleano
isDone()
Indica se il contenitore è disponibile. Questo container potrebbe essere il container predefinito. Per verificare se è il contenitore predefinito, utilizza
isDefault().
Ritorni
true se il container è disponibile. Restituisce false se get()
bloccherà e attenderà che il container sia disponibile.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-07-25 UTC."],[],["`ContainerFuture` provides an interface to retrieve a `Container`. The `get()` method blocks until a `Container` is available and then returns it. The `isDone()` method checks if a `Container` is already available, returning `true` if so, and `false` if `get()` will block. `isDone` could be the default container, to check if this is the case use `isDefault()`. `get()` waits for the container to be ready and returns it.\n"]]