[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["`ContainerOpener.ContainerFuture` provides a way to retrieve a `Container` object, which may involve waiting for it to become available."],["The `get()` method blocks until the `Container` is available, or a timeout occurs as specified in the `openContainer` method."],["The `isDone()` method indicates if the `Container` is readily available without blocking, it may be the default container."]]],["`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"]]