Skip to content

Declarative style of coding computations which respond to changes in reactive sources.

License

Notifications You must be signed in to change notification settings

bishwenduk029/ResponsiveJava

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ResponsiveJava

We can declare computations which can run themselves in response to some changes in a reactive source. The computations are just Runnable implementations. The same Runnables used to define tasks in Threads. Only this time each computation will be re-executed everytime a reactive source the computation depends on changes. The dependency has to be explicitly defined.

AnyComputaion.dependsOn(someReactiveSource).

someReactiveSource extends ReactiveSource

Developers can identify the point of changes in ReactiveSource and accordingly make a call to rerunComputations().

About

Declarative style of coding computations which respond to changes in reactive sources.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages