hmmm, imagine you a process that does:
```python
  v  = 0
  while True;
    yield Tick("a")
    v = 1-v
    yield mumble1.eq(v)
```