Stream

The Steam is a stream of events. Unlike the cell with is a value that changes the stream does not always have a value. Values pulse through it, without keeping the events value around.

Events can be things like a button press on a keyboard or the change of the mouse position.

Members

Functions

onEventsComming
void onEventsComming()

Notify listeners that an event is coming so stream can wait for it before continuing execution.

push
void push(T[] e)

Send event sequence to listeners (they must on been informed with onEventsComming first).

Variables

listeners
StreamListener!T[] listeners;
Undocumented in source.

Meta