Git Product home page Git Product logo

Comments (28)

akarnokd avatar akarnokd commented on May 7, 2024 154

I've glanced over the documentation and my impression is that Agera is almost a 1st generation reactive library with strong 0th generation ties. To put it in perspective:

  • 0th generation is when you have addListener/removeListener and update() with or without an actual value. java.util.Observable and most GUI frameworks can be considered 0th gen. It is possible, although generally cumbersome to make a composable, native library out of them.
  • 1st generation is what the Microsoft folks invented back in ~2009. It's a step upwards with straightforward architecture and great composability. However, their concept has some shortcomings discovered in late ~2013. Example: Rx.NET, Reactive4Java
  • 2nd generation is what RxJava 1.x currently is. It fixes the synchronous cancellation problem, introduced some optional backpressure and the notion of lifting into a chain.
  • 3rd generation is the Reactive-Streams initiative with fleshed out, standardized APIs, designed ~2015. The architecture is reactive-push with backpressure. Examples are Reactor 1, 2 and Akka-Streams.
  • 4th generation is the cutting edge of the field. It builds on Reactive-Streams and adds an adaptive push-pull option, in the form of operator-fusion, that allows both efficient synchronous and asynchronous use. Example is Reactor 2.5. (RxJava 2.x is in between 3 and 4 right now).

I know this is an optional library, don't use it if you don't like it. Don't get me wrong, it's not about how many operators you have, how strong do you inline your reactive library with the underlying platform or that you don't care about backpressure in GUI. It's about the architectural experiences, pitfalls and possibilities of the Rx family that maybe could have helped/inspired this library. If Agera were based on Reactive-Streams or designed in spirit of it, I'd say okay, why not.

As for the original questions:

Isn't it RxJava reinvented?

No.

Is it supposed to be more light-weight?

Seems so API-vise, not sure about performance-vise

Complementary?

As complementary as addListener-based APIs are in general. The name conflict of Observable and Supplier may be of some inconvenience.

Or just inspired?

Apparently not inspired by Rx.

Google Play Movies and we like to open source code whenever possible

In Netflix' footsteps I see. You see, they got significant help along the way...

from agera.

JoseAlcerreca avatar JoseAlcerreca commented on May 7, 2024 108

We don't compare Agera with RxJava because it's not meant to be a replacement for it nor it's our opinion that it should be replaced.

Reactive programming has many flavors and Agera proposes one that we know works well for Android. It was developed internally as part of Google Play Movies and we like to open source code whenever possible.

from agera.

 avatar commented on May 7, 2024 33

It's a good question but I'm afraid the answer isn't as exciting as already mentioned Agera is just another flavor of reactive programming, developed (after but) independently of RxJava, without inspiration, reinvention, or relation. We simply found that this style worked well for us.
I wouldn't see it used together with RxJava. It's rather an either or situation. I'm sure there's cases where one is more suitable than the other.
I would say it's more light-weight, but not intentionally, only because this what was needed by us as we developed it.
With regards to the flavor I'd say one of the bigger differences are the Agera push event/pull data (vs push data in RX) as well as the event/function separation, as well as the Scala "Try" inspired error handling.

from agera.

yuanyang1991 avatar yuanyang1991 commented on May 7, 2024 31

interesting

from agera.

lzyzsd avatar lzyzsd commented on May 7, 2024 31

It looks like RxJava at first glance, but has more meaningful and easy understanding api names. Great Job!

from agera.

andydevacc avatar andydevacc commented on May 7, 2024 23

Interesting! I'll try it later :)

from agera.

TwentySevenC avatar TwentySevenC commented on May 7, 2024 18

inspiring!!

from agera.

rongliangduan avatar rongliangduan commented on May 7, 2024 14

Great Job!

from agera.

Konrad-Morawski avatar Konrad-Morawski commented on May 7, 2024 13

Thanks for your answers, guys (and for open-sourcing your work).

This really helps to clarify things. I believe the documentation would benefit if you included such a brief "what's what" in the intro : ) It's the differences that are most interesting, obviously there is no
one right approach to reactive programming.

from agera.

ChadCSong avatar ChadCSong commented on May 7, 2024 12

Agera seems a good way to realize reactive programming. From there doc, the new train of thought was built for Android life circle. RxJava is a pure way to Java not Android.

from agera.

Konrad-Morawski avatar Konrad-Morawski commented on May 7, 2024 12

@ChadCSong

RxJava is a pure way to Java not Android.

These aren't mutually exclusive, and there's the https://github.com/ReactiveX/RxAndroid supplement for platform specific stuff.

from agera.

SeongUgJung avatar SeongUgJung commented on May 7, 2024 10

we need to look a different perspective. because RxJava cannot be Architecture on itself.
for being architecture, we should make it wrap something.

but agera...it looks like reflex or redux.
agera's Repository is similar Store of redux
agera's Supplier is similar Action of redux
agera's Updatable is similar View of redux.

I don't think google makes a wheel again.

you know that ReactiveExtentions XX (RxJava, RxSwift...) != ReactJS of Facebook

we need to look a different perspective.

from agera.

VictorAlbertos avatar VictorAlbertos commented on May 7, 2024 7

@ChadCSong, you can sync fragments and activities life cycle states easily with RxLifeCycle, for instance.

Indeed, I think most of rx libraries extensions has been created not for java programmers, but for android programmers.

from agera.

JoseAlcerreca avatar JoseAlcerreca commented on May 7, 2024 5

Closing this to limit noise.

from agera.

WZero avatar WZero commented on May 7, 2024 5

可以看看

from agera.

ChadCSong avatar ChadCSong commented on May 7, 2024 3

@Konrad-Morawski
@VictorAlbertos
Thanks for your reminding. The differences I say tend to more about the libs' concept not the application.
More differences must be found in use. :)

from agera.

monfera avatar monfera commented on May 7, 2024 3

@akarnokd talking about these in terms of generations is interesting, thanks for the insight! I wonder what future generation number will implement Conal Elliott's vision, which I understand is more denotational, and 'late-binds' issues such as backpressure, pull vs push, handling of discretization error etc. An analogy (his one, me citing probably improperly) is like raster graphics vs. SVG. In the latter, you denote the things and the rasterization is essentially an afterthought, as, of course, screens and CPUs can only operate in a discretized world. In present-day FRP the core 'business' (or game, edu, whatever) logic is intermingled with aspects such as throttling, sampling, diffing etc. between almost every single connection between functional nodes.

I believe Conal's idea is, let's define a game etc. as if we didn't have to worry about incidental present-day constraints, and let's defer downsampling, backpressure handling etc. until a target environment is selected. For example, an Android game could be written with high performance, resolution etc. in mind, e.g. flagship handheld of 2018, or even, flagship home console of 2020. Then the late-binding of discretization would be such that even today's mid-tier and low-end Android phones can be targeted, tweaking tradeoffs via sliders such as loss of frame rate, loss of spatial resolution, loss of texture quality, less frequent updates from or pushes to the network (multiplayer), tradeoff of rendering accuracy vs. stutter-free game play, level of AI, number of enemies etc.

from agera.

jbialkowski13 avatar jbialkowski13 commented on May 7, 2024 1

@IgorGanapolsky Based on https://github.com/ReactiveX/RxJava/wiki/Reactive-Streams RxJava is going to support new Java Flow APIs.

from agera.

FranciscoE-Hudl avatar FranciscoE-Hudl commented on May 7, 2024 1

@IgorGanapolsky Reactive Streams only gives the topmost interfaces for pub, sub, and producers. Java 9 isn't giving any default implementation.

from agera.

geolyth avatar geolyth commented on May 7, 2024 1

Thank you for sharing your work as open-source

from agera.

SeongUgJung avatar SeongUgJung commented on May 7, 2024

I think this model is for Architecture as MVW or Reactive Architecture. since last 6 months, I've found MVW like this.

I think agera is easist model of Android MVW libraries or examples.

from agera.

antonshkurenko avatar antonshkurenko commented on May 7, 2024

Is it better for the Android than RxJava? Since RxJava is for java and Agera is for Android (including lifecycle etc)?

from agera.

FranciscoE-Hudl avatar FranciscoE-Hudl commented on May 7, 2024

What RP principles/libraries is it inspired by? It seems to get out of the way of functional languages to be as Androidy as possible, in some interesting ways.

The update Cancellable field model given in the samples, even with locking methods, is bound to error by common Android pitfalls like onClick firing after Activity is destroyed.

from agera.

randallmitchell avatar randallmitchell commented on May 7, 2024

@FranciscoE-Hudl example(s)? curious for your thoughts.

from agera.

peerless2012 avatar peerless2012 commented on May 7, 2024

I come here to see what's the different from RXJava,and i also recognize that there is a new way to code now.Hope this is aswom!

from agera.

IgorGanapolsky avatar IgorGanapolsky commented on May 7, 2024

Wait a second. Aren't Java 9's Flow APIs gonna supersede both RxJava and Agera? Am I missing something, or are we gonna end up with a handful of redundant reactive programming libraries.

from agera.

Konrad-Morawski avatar Konrad-Morawski commented on May 7, 2024

@IgorGanapolsky I think the next version of RxJava is supposed to incorporate them

from agera.

jponge avatar jponge commented on May 7, 2024

@akarnokd You forgot MS Excel. That is the true 0th generation 😉

from agera.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.