# waitUntil(within:_:)

- **Package:** libtmux-swift
- **Language:** Swift
- **Kind:** function
- **Source:** https://github.com/libtmux/libtmux-swift/blob/f02a4668570e1cc5198c941413750e021f42c214/Tests/TmuxFixture/TmuxFixture.swift#L317
- **Page:** https://libtmux.org/reference/swift/waituntil(within-_-)/

```
waitUntil(within:_:)(within: Duration, condition: () async throws -> Bool) -> Bool
```

Polls `condition` until it holds, and reports whether it did.

Bounded in wall-clock rather than in attempts. What makes one of these polls
slow is the tmux call inside it, so a count of attempts says nothing about
how long the loop can run: on a contended machine a generous-looking budget
outlives the case's time limit, and the failure reads as a timeout instead of
naming the thing that never became true.

## Raises

- `Bool`
