Functional Reactive Programming

Blackheath, Stephen; Jones, Anthony

ISBN 10: 1633430103 ISBN 13: 9781633430105
Editore: Manning Publications, 2016
Usato Paperback

Da ThriftBooks-Dallas, Dallas, TX, U.S.A. Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Venditore AbeBooks dal 2 luglio 2009

Questo articolo specifico non è più disponibile.

Riguardo questo articolo

Descrizione:

Pages are clean and are not marred by notes or folds of any kind. ~ ThriftBooks: Read More, Spend Less 1.7. Codice articolo G1633430103I2N00

Segnala questo articolo

Riassunto:

Summary

Functional Reactive Programming teaches the concepts and applications of FRP. It offers a careful walk-through of core FRP operations and introduces the concepts and techniques you'll need to use FRP in any language.

Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

About the Technology

Today's software is shifting to more asynchronous, event-based solutions. For decades, the Observer pattern has been the go-to event infrastructure, but it is known to be bug-prone. Functional reactive programming (FRP) replaces Observer, radically improving the quality of event-based code.

About the Book

Functional Reactive Programming teaches you how FRP works and how to use it. You'll begin by gaining an understanding of what FRP is and why it's so powerful. Then, you'll work through greenfield and legacy code as you learn to apply FRP to practical use cases. You'll find examples in this book from many application domains using both Java and JavaScript. When you're finished, you'll be able to use the FRP approach in the systems you build and spend less time fixing problems.

What's Inside

  • Think differently about data and events
  • FRP techniques for Java and JavaScript
  • Eliminate Observer one listener at a time
  • Explore Sodium, RxJS, and Kefir.js FRP systems

About the Reader

Readers need intermediate Java or JavaScript skills. No experience with functional programming or FRP required.

About the Authors

Stephen Blackheath and Anthony Jones are experienced software developers and the creators of the Sodium FRP library for multiple languages. Foreword by Heinrich Apfelmus. Illustrated by Duncan Hill.

Table of Contents

  1. Stop listening!
  2. Core FRP
  3. Some everyday widget stuff
  4. Writing a real application
  5. New concepts
  6. FRP on the web
  7. Switch
  8. Operational primitives
  9. Continuous time
  10. Battle of the paradigms
  11. Programming in the real world
  12. Helpers and patterns
  13. Refactoring
  14. Adding FRP to existing projects
  15. Future directions

Informazioni sull?autore: Stephen Blackheath is a professional developer and FRP advocate. He's the primary author of the Sodium FRP library for Java.

Anthony Jones writes code for a living and has spent half a decade refactoring a Java based configuration GUI to a FRP based framework. He is a contributor to the Sodium project.

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

Dati bibliografici

Titolo: Functional Reactive Programming
Casa editrice: Manning Publications
Data di pubblicazione: 2016
Legatura: Paperback
Condizione: As New
Condizione sovraccoperta: No Jacket

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Blackheath, Stephen; Jones, Anthony
Editore: Simon and Schuster, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Antico o usato Brossura

Da: INDOO, Avenel, NJ, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: As New. Unread copy in mint condition. Codice articolo SS9781633430105

Contatta il venditore

Compra usato

EUR 39,66
Spedizione gratuita
Spedito in U.S.A.

Quantità: Più di 20 disponibili

Aggiungi al carrello

Foto dell'editore

Blackheath, Stephen
Editore: Manning, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Paperback

Da: Toscana Books, AUSTIN, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: new. Excellent Condition.Excels in customer satisfaction, prompt replies, and quality checks. Codice articolo Scanned1633430103

Contatta il venditore

Compra nuovo

EUR 39,71
EUR 3,67 shipping
Spedito in U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Blackheath, Stephen; Jones, Anthony
Editore: Simon and Schuster, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Brossura

Da: INDOO, Avenel, NJ, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: New. Brand New. Codice articolo 9781633430105

Contatta il venditore

Compra nuovo

EUR 39,75
Spedizione gratuita
Spedito in U.S.A.

Quantità: Più di 20 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Stephen Blackheath, Anthony Jones
Editore: Manning Publications, US, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Paperback

Da: Rarewaves USA, OSWEGO, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: New. DESCRIPTION   Most software applications must handle user or system-generated events. The most widely-accepted event handling model is the Observer pattern, in which an object "listens" for changes in the application's state and then reacts by executing a unit of code-the problems is that this approach is prone to bugs.   Functional Reactive Programming (FRP) is an alternative to the Observer pattern. It's designed to deal with events as a stream of values over time rather than as a series of unique responses to discrete changes in state, keeping logic tidy and eliminating the bugs that plague event handling code with no loss of expressiveness. FRP is useful anywhere the Observer pattern is common, including user interfaces, video games, networking, and industrial applications.  Functional Reactive Programming teaches the concepts and applications of FRP. It begins with a careful walk-through of the FRP core operations and introduces the concepts and techniques needed to use FRP in any language. Following easy-to-understand examples, readers will learn how to use FRP in greenfield applications and how to refactor existing applications. Along the way, the book introduces the basics of functional programming in a just-in-time style, so readers never learn anything before they need to use it. By the end of the book, readers will be able to use FRP to spend more time adding features and less time fixing problems.     KEY SELLING POINTS  Step by step guide to developing FRP applications  Think differently about data and events  Spend less time fixing problems and more time adding features      AUDIENCE This book presents examples in Java, C++, and JavaScript using the Sodium, Flapjax, and BaconJS libraries. No prior experience with functional programming is required.     ABOUT THE TECHNOLOGY Reactive programming is a broad concept, where programs are event-based and viewed as a data flow. Functional Reactive Programming is a specific type of reactive programming that improves the quality of interactive applications, allowing developers to spend more time adding features and less time fixing problems. Codice articolo LU-9781633430105

Contatta il venditore

Compra nuovo

EUR 49,98
Spedizione gratuita
Spedito in U.S.A.

Quantità: 10 disponibili

Aggiungi al carrello

Foto dell'editore

Blackheath, Stephen; Jones, Anthony
Editore: Manning, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Brossura

Da: Majestic Books, Hounslow, Regno Unito

Valutazione del venditore 4 su 5 stelle 4 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: New. pp. 245. Codice articolo 373589188

Contatta il venditore

Compra nuovo

EUR 51,79
EUR 7,42 shipping
Spedito da Regno Unito a U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Blackheath, Stephen; Jones, Anthony
Editore: Manning, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Brossura

Da: Biblios, Frankfurt am main, HESSE, Germania

Valutazione del venditore 4 su 5 stelle 4 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: New. pp. 245. Codice articolo 18372456209

Contatta il venditore

Compra nuovo

EUR 53,73
EUR 9,95 shipping
Spedito da Germania a U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

0
Editore: Manning, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Brossura

Da: Basi6 International, Irving, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Brand New. New. US edition. Expediting shipping for all USA and Europe orders excluding PO Box. Excellent Customer Service. Codice articolo ABEOCT25-12712

Contatta il venditore

Compra nuovo

EUR 55,98
Spedizione gratuita
Spedito in U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Stephen Blackheath
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Paperback

Da: Grand Eagle Retail, Bensenville, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: new. Paperback. DESCRIPTION Most software applications must handle user or system-generated events. The most widely-accepted event handling model is the Observer pattern, in which an object "listens" for changes in the application's state and then reacts by executing a unit of codethe problems is that this approach is prone to bugs. Functional Reactive Programming (FRP) is an alternative to the Observer pattern. Its designed to deal with events as a stream of values over time rather than as a series of unique responses to discrete changes in state, keeping logic tidy and eliminating the bugs that plague event handling code with no loss of expressiveness. FRP is useful anywhere the Observer pattern is common, including user interfaces, video games, networking, and industrial applications. Functional Reactive Programming teaches the concepts and applications of FRP. It begins with a careful walk-through of the FRP core operations and introduces the concepts and techniques needed to use FRP in any language. Following easy-to-understand examples, readers will learn how to use FRP in greenfield applications and how to refactor existing applications. Along the way, the book introduces the basics of functional programming in a just-in-time style, so readers never learn anything before they need to use it. By the end of the book, readers will be able to use FRP to spend more time adding features and less time fixing problems. KEY SELLING POINTS Step by step guide to developing FRP applications Think differently about data and events Spend less time fixing problems and more time adding features AUDIENCE This book presents examples in Java, C++, and JavaScript using the Sodium, Flapjax, and BaconJS libraries. No prior experience with functional programming is required. ABOUT THE TECHNOLOGY Reactive programming is a broad concept, where programs are event-based and viewed as a data flow. Functional Reactive Programming is a specific type of reactive programming that improves the quality of interactive applications, allowing developers to spend more time adding features and less time fixing problems. Shipping may be from multiple locations in the US or from the UK, depending on stock availability. Codice articolo 9781633430105

Contatta il venditore

Compra nuovo

EUR 57,09
Spedizione gratuita
Spedito in U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Stephen Blackheath, Anthony Jones
Editore: Manning Publications, US, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Paperback

Da: Rarewaves USA United, OSWEGO, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: New. DESCRIPTION   Most software applications must handle user or system-generated events. The most widely-accepted event handling model is the Observer pattern, in which an object "listens" for changes in the application's state and then reacts by executing a unit of code-the problems is that this approach is prone to bugs.   Functional Reactive Programming (FRP) is an alternative to the Observer pattern. It's designed to deal with events as a stream of values over time rather than as a series of unique responses to discrete changes in state, keeping logic tidy and eliminating the bugs that plague event handling code with no loss of expressiveness. FRP is useful anywhere the Observer pattern is common, including user interfaces, video games, networking, and industrial applications.  Functional Reactive Programming teaches the concepts and applications of FRP. It begins with a careful walk-through of the FRP core operations and introduces the concepts and techniques needed to use FRP in any language. Following easy-to-understand examples, readers will learn how to use FRP in greenfield applications and how to refactor existing applications. Along the way, the book introduces the basics of functional programming in a just-in-time style, so readers never learn anything before they need to use it. By the end of the book, readers will be able to use FRP to spend more time adding features and less time fixing problems.     KEY SELLING POINTS  Step by step guide to developing FRP applications  Think differently about data and events  Spend less time fixing problems and more time adding features      AUDIENCE This book presents examples in Java, C++, and JavaScript using the Sodium, Flapjax, and BaconJS libraries. No prior experience with functional programming is required.     ABOUT THE TECHNOLOGY Reactive programming is a broad concept, where programs are event-based and viewed as a data flow. Functional Reactive Programming is a specific type of reactive programming that improves the quality of interactive applications, allowing developers to spend more time adding features and less time fixing problems. Codice articolo LU-9781633430105

Contatta il venditore

Compra nuovo

EUR 57,41
EUR 42,64 shipping
Spedito in U.S.A.

Quantità: 10 disponibili

Aggiungi al carrello

Foto dell'editore

Blackheath, Stephen; Jones, Anthony
Editore: Manning, 2016
ISBN 10: 1633430103 ISBN 13: 9781633430105
Nuovo Brossura

Da: ALLBOOKS1, Direk, SA, Australia

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Brand new book. Fast ship. Please provide full street address as we are not able to ship to P O box address. Codice articolo SHAK12712

Contatta il venditore

Compra nuovo

EUR 63,14
Spedizione gratuita
Spedito da Australia a U.S.A.

Quantità: 1 disponibili

Aggiungi al carrello

Vedi altre 6 copie di questo libro

Vedi tutti i risultati per questo libro