io.github.libtmux.batch.Batch.Batch.length
Java
- Python Unavailable
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- io.github.libtmux.batch.Batch
- Declared in
- Batch
- Package
- io.github.libtmux:libtmux
- Source
- libtmux/src/main/java/io/github/libtmux/batch/Batch.java
-
How many bytes the collected operations come to as the one command tmux parses.
tmux packs a command into MAX_IMSGSIZE, 16384 bytes, and refuses a longer one with
command too long; measured, it takes about 16300 of them. A batch taken from a handle travels as this one string plus the guard that fences it, so it costs this and a little more. One dispatched as separate arguments costs less, since nothing there is quoted.
0 declared, 0 inherited