Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add signals as a container to store state #1

Merged
merged 5 commits into from
May 8, 2019
Merged

Add signals as a container to store state #1

merged 5 commits into from
May 8, 2019

Commits on May 8, 2019

  1. Add signals as a containers to store state

    * Used as the root of state propagation.
    * Encapsulated state can be reset or updated.
    * Outputs can be connected and will be triggered on state changes.
    stwa committed May 8, 2019
    Configuration menu
    Copy the full SHA
    645f914 View commit details
    Browse the repository at this point in the history
  2. Add alternate wording

    olle authored and stwa committed May 8, 2019
    Configuration menu
    Copy the full SHA
    a27b188 View commit details
    Browse the repository at this point in the history
  3. Add signalFns to create function-based signals

    * Encapsulated state from function return value.
    * Tracks input signals and recomputes on any state change.
    * Outputs can be connected and will be triggered on state changes.
    stwa committed May 8, 2019
    1 Configuration menu
    Copy the full SHA
    387bc4f View commit details
    Browse the repository at this point in the history
  4. Free signals without connected outputs

    * Releases resources to the garbage collector.
    * Saves CPU time by computing less signals.
    * Notifies registered watchers.
    stwa committed May 8, 2019
    Configuration menu
    Copy the full SHA
    dc2cdd8 View commit details
    Browse the repository at this point in the history
  5. Fix typos

    stwa committed May 8, 2019
    Configuration menu
    Copy the full SHA
    287ff6c View commit details
    Browse the repository at this point in the history