On this page
LibTmux.TmuxChain
- Module
- LibTmux
- Package
- LibTmux
- Source
- src/LibTmux/Chaining/TmuxChain.cs
-
Commands tmux runs together, in one process.
A one-shot call starts a tmux client, runs one command, and lets it exit, which is the right shape for one command and the wrong shape for fifty: the process start dominates. A chain hands tmux the whole sequence at once, so the cost is paid once no matter how many commands are in it.
Building a chain reaches nothing; only
ExecuteAsyncdoes. Each step returns a new chain, so a partly built one can be shared without another caller's additions appearing in it.
4 declared, 0 inherited
Members
- ExecuteAsync method Runs every command in one tmux invocation.
- Then method Adds one command and returns the longer chain.
- TmuxChain method
- Commands property Gets the commands this chain will run, in order.