• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Imperative programming vs reactive programming

 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From an expert,

In imperative programming we spin up threads to do things in parallel.

In reactive programming we declare the unit of work and leave execution (i.e. concurrency) up to the runtime.

Questions

1. Does Java supports imperative and reactive programming? How?
2. Can someone explain with an example of imperative and reactive programming with an example?
3. Concurrency can be done via call back or futures. What is the difference between having a call back or using futures?

Thanks.

 
Bartender
Posts: 15737
368
  • Likes 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Joseph Michael wrote:In reactive programming we declare the unit of work and leave execution (i.e. concurrency) up to the runtime.


This is not limited to reactive programming. This is true for all asynchronous programming styles.

Does Java supports imperative and reactive programming? How?


Almost everything you do in Java is imperative. It provides asynchronous programming models with the Stream API. If you are wondering about reactive programming specifically, there are libraries for this, such as RxJava.

2. Can someone explain with an example of imperative and reactive programming with an example?


Imperative:

Reactive:

Asynchronous through Stream API:


3. Concurrency can be done via call back or futures. What is the difference between having a call back or using futures?


With callbacks you supply operations to perform next directly to the asynchronous operation. With futures, the asynchronous operation returns an object with which you can register operations to perform next.

Callback:

Future:
 
Every time you till, you lose 30% of your organic matter. But this tiny ad is durable:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic