tmux.Snapshot
Go
- Python Unavailable
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- tmux
- Package
- github.com/libtmux/libtmux-go/tmux
- Source
- tmux/snapshot.go
-
Snapshot is an immutable, observational view of one tmux server. It is normally returned by
Server.Snapshot. Its zero value has a zeroVersion, a zeroServer, non-nil empty collection slices, and not-found point lookups. Accessors never query tmux; returned slices are newly allocated and their contained records are shallow copies.
17 declared, 0 inherited
Members
- Clients method Clients returns a newly allocated shallow copy of materialized clients. It never queries tmux.
- Panes method Panes returns a newly allocated shallow copy of pane views for every winlink. It never queries tmux.
- Sessions method Sessions returns a newly allocated shallow copy of materialized sessions. It never queries tmux.
- Windows method Windows returns a newly allocated shallow copy with one view per winlink. It never queries tmux.
- ClientByName method ClientByName returns the sole client view with name. It never queries tmux and returns a
SnapshotLookupErrormatchingErrNotFoundorErrSnapshotAmbiguouswhen cardinality is not one. - ClientsSeq method ClientsSeq returns an iterator over materialized client values. It never queries tmux.
- MarshalJSON method MarshalJSON encodes the snapshot's tmux version and the records it holds. A kind it listed encodes as an array, empty when tmux reported none; a kind it never listed is absent. Those are different answers, and one field cannot spell both, which is why the arrays are pointers here. Nothing decodes; see
Session.MarshalJSON. - PaneByID method PaneByID returns the sole pane view with id. Linked-session views can make an ID ambiguous, so it can return a
SnapshotLookupErrormatchingErrSnapshotAmbiguous. It never queries tmux. - PanesByID method PanesByID returns newly allocated shallow copies of every pane view with id. It never queries tmux.
- PanesSeq method PanesSeq returns an iterator over materialized pane-view values. It never queries tmux.
- Server method Server returns the configured handle that produced this snapshot. The zero Snapshot returns a zero Server.
- SessionByID method SessionByID returns the sole session view with id. It never queries tmux and returns a
SnapshotLookupErrormatchingErrNotFoundotherwise. - SessionsSeq method SessionsSeq returns an iterator over materialized session values. It never queries tmux.
- Version method Version returns the tmux version that selected this snapshot's format fields. The zero Snapshot returns a zero Version.
- WindowByID method WindowByID returns the sole winlink view with id. Linked sessions can make an ID ambiguous, so it can return a
SnapshotLookupErrormatchingErrSnapshotAmbiguous. It never queries tmux. - WindowsByID method WindowsByID returns newly allocated shallow copies of every winlink view with id. It never queries tmux.
- WindowsSeq method WindowsSeq returns an iterator over materialized winlink values. It never queries tmux.