Poll

final case
class Poll[A](in: Pat[A], gate: Pat[Boolean], label: Pat[String]) extends Pattern[A]

A pattern that prints snapshots of its input to the console. The pattern passes its input through to the output.

Value Params
gate

a signal that whenever high causes the pattern to print the corresponding value of the input.

in

the input to be pulled. If this is a constant, the UGen will close after polling it. This is to prevent a dangling Poll whose trigger is infinite (such as Impulse). If you want to avoid that, you should wrap the input in a DC.

label

an identifying label to prepend to the printing.

trait Serializable
class Pattern[A]
trait Pat[A]
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def expand[T <: Exec[LazyRef(...)]](implicit ctx: Context[T], tx: T): Stream[T, A]
def transform[T <: Exec[LazyRef(...)]](t: Transform)(implicit ctx: Context[T], tx: T): Pat[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product