Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Cozmonat/ReactiveStore

Repository files navigation

ReactiveStore

License Language Build Status Coverage Status

ReactiveStore framework consists of lightweight Dispatcher implementation similar to Flux pattern and reactive observable store. Dispatcher protocol provides methods and properties allowing to control data flow by sending and handling actions. ReactiveStore protocol provides basic reactive functionality allowing to subscribe to store changes.

Installation

Swift Package Manager

Add "ReactiveStore" dependency in XCode

CocoaPods

pod 'ReactiveStore'

Add extension to support "conventional" observing:

pod 'ReactiveStore/ReactiveObject'

This will install the extension to ReactiveStore that enables possibility to observe store changes without using Combine or any other library. With this extension you'll be able to subscribe to store changes by calling "addObserver" method and providing a change handler closure. "addObserver" returns a subscription object. Store subscription will be active until cancelled or the subscription object is disposed. You can use "notify" method inside the store action handlers and send notifications to subscribers with the information about which store properties has being changed by passing an array of "PartialKeyPath" objects.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published