Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

errors.TmuxServerRestartedError

TypeScript
  • Python Unavailable
  • Ruby Unavailable
  • Lua Unavailable
  • TypeScript
  • Rust Unavailable
  • Go Unavailable
  • Java Unavailable
  • .NET Unavailable
  • C++ Unavailable
  • Swift Unavailable

View as Markdown

Module
errors
Package
libtmux
Source
packages/libtmux/src/errors.ts
class errors.TmuxServerRestartedError
class [source]
class [source]
class errors.TmuxServerRestartedError

A handle outlived the daemon that issued its id.

tmux numbers a restarted daemon's objects from the start, so %1 from before the restart names a pane that exists and belongs to somebody else. Raised from two places for one reason: the local check, when an acquisition has already seen the new daemon, and tmux itself, when it has not — the command carries a condition on the daemon's pid and start time and takes a branch that refuses instead of running.

delivery is always not_started: the whole point of the condition is that a refused command never ran, so retrying against a fresh handle is safe.

Examples

try {
await pane.kill();
} catch (error) {
if (error instanceof TmuxServerRestartedError) {
// Read the server again; this pane's id belongs to another daemon now.
}
}

Discussed in Socket and servers

3 declared, 0 inherited

Members

Esc

Type to search.