raquo / Airstream

State propagation and event streams with mandatory ownership and no glitches
MIT License
245 stars 28 forks source link

Update README.md #118

Closed rgwilton closed 6 months ago

rgwilton commented 7 months ago

Change PeriodicEventStream to PeriodicStream

Definition of EventStream.periodic is:

  def periodic(
    intervalMs: Int,
    resetOnStop: Boolean = false
  ): PeriodicStream[Int] = {
    new PeriodicStream[Int](
      initial = 0,
      next = eventNumber => Some((eventNumber + 1, intervalMs)),
      resetOnStop = resetOnStop
    )
  }

hence, I assume that the underlying class name has changed.

raquo commented 6 months ago

Thanks! Indeed, I removed "Event" from event stream class names a while ago.