Skip to content

dDomovoj/RxCraft

Repository files navigation

RxCraft

  • Observable properties:
@RxCraft.Property var value: Int = 0
...
$value.filter { $0.isEven }
  .distinct() // Emits only values that differ from initial one
  .skip(1)    // Skips initial value on subscription
  .take(1)    // Takes only one value then finishes
  .subscribe(on: .main) { value in ... }

Also observable from protocol via:

protocol ISomeActivity {

  var observable: RxCraft.RxBuilder<Int> { get }

}

struct SomeActivity: ISomeActitivity {

  private @RxCraft.Property var value: Int = 0
  
  var observable: RxCraft.RxBuilder<Int> { $value }

}
...
let activity: ISomeActivity
activity.observable.subscribe { ... }

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published