SuperCollider CLASSES (extension)

TreeSnapshot

A snapshot of the state of the node tree on a server.
Source: /home/egor/.local/share/SuperCollider/downloaded-quarks/NodeSnapshot/NodeSnapshot.sc
Inherits from: Object

Description

TreeSnapshot is a snapshot of the node tree running on a server, at a single point in time. Snapshots can be generated using the *get method.

Class Methods

*get (action, node)

Arguments:

action

A function to be executed when the TreeShapshot has been build. Snapshot is passed as the first argument.

node

(Optional) A group on the server to query. This useful to build a snapshot of only a subsection of the node tree.

Inherited class methods

Undocumented class methods

*dump

*dump = value

*new (server, traceMsg)

Instance Methods

Inherited instance methods

Undocumented instance methods

-asString

-drawFunc

-nodeIDs

-nodes

-parse

-root

Examples

TreeSnapshot.get({
    |snapshot|
    snapshot.postln;
});