Cargando…

SignalR real-time application cookbook : use SignalR to create real-time, bidirectional, and asynchronous applications based on standard web technologies /

This book contains illustrated code examples to help you create real-time, asynchronous, and bi-directional client-server applications. Each recipe will concentrate on one specific aspect of application development with SignalR showing you how that aspect can be used proficiently. Different levels o...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Vespa, Roberto
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, ©2014.
Colección:Quick answers to common problems.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000 a 4500
001 EBOOKCENTRAL_ocn878920273
003 OCoLC
005 20240329122006.0
006 m o d
007 cr cnu---unuuu
008 140502s2014 enk o 001 0 eng d
040 |a IDEBK  |b eng  |e pn  |c IDEBK  |d EBLCP  |d N$T  |d E7B  |d UMI  |d DEBSZ  |d DEBBG  |d OCLCQ  |d COO  |d OCLCF  |d OCLCQ  |d YDXCP  |d OCLCQ  |d D6H  |d AGLDB  |d OCLCQ  |d ICA  |d OCLCQ  |d CCO  |d PIFAG  |d ZCU  |d MERUC  |d OCLCQ  |d U3W  |d REB  |d STF  |d OCLCQ  |d VTS  |d CEF  |d ICG  |d NLE  |d INT  |d VT2  |d OCLCQ  |d UKMGB  |d WYU  |d G3B  |d TKN  |d OCLCO  |d OCLCQ  |d UAB  |d DKC  |d AU@  |d OCLCQ  |d M8D  |d UKAHL  |d HS0  |d OCLCQ  |d OCLCO  |d QGK  |d OCLCQ  |d OCLCO  |d OCLCL 
016 7 |a 018006562  |2 Uk 
019 |a 880637776  |a 881399447  |a 1259104649 
020 |a 9781783285969  |q (electronic bk.) 
020 |a 1783285966  |q (electronic bk.) 
020 |a 1306704545  |q (electronic bk.) 
020 |a 9781306704540  |q (electronic bk.) 
020 |a 1783285958 
020 |a 9781783285952 
020 |z 9781783285952 
029 1 |a AU@  |b 000062508379 
029 1 |a AU@  |b 000067097957 
029 1 |a CHNEW  |b 000697667 
029 1 |a CHNEW  |b 000886672 
029 1 |a CHVBK  |b 374455910 
029 1 |a DEBBG  |b BV042032696 
029 1 |a DEBBG  |b BV043606978 
029 1 |a DEBSZ  |b 405693877 
029 1 |a DEBSZ  |b 414181689 
029 1 |a DEBSZ  |b 484722433 
029 1 |a GBVCP  |b 882839845 
029 1 |a UKMGB  |b 018006562 
035 |a (OCoLC)878920273  |z (OCoLC)880637776  |z (OCoLC)881399447  |z (OCoLC)1259104649 
037 |a CL0500000432  |b Safari Books Online 
050 4 |a QA76.54 
072 7 |a COM  |x 013000  |2 bisacsh 
072 7 |a COM  |x 014000  |2 bisacsh 
072 7 |a COM  |x 018000  |2 bisacsh 
072 7 |a COM  |x 067000  |2 bisacsh 
072 7 |a COM  |x 032000  |2 bisacsh 
072 7 |a COM  |x 037000  |2 bisacsh 
072 7 |a COM  |x 052000  |2 bisacsh 
082 0 4 |a 004/.33  |2 22 
049 |a UAMI 
100 1 |a Vespa, Roberto. 
245 1 0 |a SignalR real-time application cookbook :  |b use SignalR to create real-time, bidirectional, and asynchronous applications based on standard web technologies /  |c Roberto Vespa. 
260 |a Birmingham :  |b Packt Publishing,  |c ©2014. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Quick answers to common problems 
500 |a Includes index. 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Understanding the Basics; Introduction; Adding a Hub to an ASP.NET project; Adding a Hub to a self-hosting application; Connecting to a Hub from a JavaScript client; Connecting to a Hub from a .NET application; Chapter 2: Using Hubs; Introduction; Adding a method to a Hub and counting the calls to it; Calling back the caller from a Hub's method; Broadcasting to all connected clients; Adding a connection to a group; Removing a connection from a group 
505 8 |a Broadcasting to all connected clients except the callerBroadcasting to all clients except the specified ones; Broadcasting to all clients in a group except the caller; Broadcasting from outside a Hub; Using the return value of a Hub method; Chapter 3: Using the JavaScript Hubs Client API; Introduction; Starting a Hub connection; Setting up connection transport strategies; Calling a server-side Hub method; Adding a client-side method on the proxy and calling it from the server; Managing errors across a complex asynchronous workflow; Chapter 4: Using the .NET Hubs Client API; Introduction 
505 8 |a Starting a Hub connectionSetting up connection transport strategies; Calling a server-side Hub method; Adding a client-side method on the proxy and calling it from the server; Managing errors across a complex asynchronous workflow; Chapter 5: Using a Persistent Connection; Introduction; Adding and registering a Persistent Connection; Sending messages from the server; Sending messages to the server; Exchanging messages between a server and a JavaScript client; Exchanging messages between a server and a .NET client; Chapter 6: Handling Connections; Introduction 
505 8 |a Controlling the lifetime of a connectionHandling a connection transient state; Establishing a cross-domain connection; Chapter 7: Analyzing Advanced Scenarios; Introduction; Generating static files for JavaScript proxies; Authorizing requests on a Hub; Authorizing requests on a Persistent Connection; Authorizing requests in a self-hosting context; Scaling up; Scaling out with Azure; Scaling out with Redis; Scaling out with SQL Server; Establishing proxy-less connections; Introducing dependency injection (simple approach); Introducing dependency injection (advanced approach) 
505 8 |a Using dependency injection to replace a default behaviorExtending the Hub pipeline; Handling errors; Chapter 8: Building Complex Applications; Introduction; Implementing a room-based chat application; Implementing a shared whiteboard; Implementing a real-time map of flying airplanes; Implementing a ""pets finder"" application; Implementing a custom backplane; Implementing a real-time error notification system; Appendix A: Creating Web Projects; Introduction; Creating an empty ASP.NET web application; Creating an ASP.NET web forms application; Creating an ASP.NET MVC application 
520 |a This book contains illustrated code examples to help you create real-time, asynchronous, and bi-directional client-server applications. Each recipe will concentrate on one specific aspect of application development with SignalR showing you how that aspect can be used proficiently. Different levels of developers will find this book useful. Beginners will be able to learn all the fundamental concepts of SignalR, quickly becoming productive in a difficult arena. Experienced programmers will find in this book a handy and useful collection of ready-made solutions to common use cases, which they wil. 
546 |a English. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Real-time data processing. 
650 6 |a Temps réel (Informatique) 
650 7 |a COMPUTERS  |x Computer Literacy.  |2 bisacsh 
650 7 |a COMPUTERS  |x Computer Science.  |2 bisacsh 
650 7 |a COMPUTERS  |x Data Processing.  |2 bisacsh 
650 7 |a COMPUTERS  |x Hardware  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Information Technology.  |2 bisacsh 
650 7 |a COMPUTERS  |x Machine Theory.  |2 bisacsh 
650 7 |a COMPUTERS  |x Reference.  |2 bisacsh 
650 7 |a Real-time data processing  |2 fast 
758 |i has work:  |a SignalR real-time application cookbook (Text)  |1 https://id.oclc.org/worldcat/entity/E39PCH6JC84vpHkKWMFPVTmJ9P  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Print version:  |a Vespa, Roberto.  |t SignalR Real-time Application Cookbook.  |d Packt Publishing 2014  |z 1306704545 
830 0 |a Quick answers to common problems. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781783285952/?ar  |z Texto completo 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=1582946  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26849898 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1582946 
938 |a ebrary  |b EBRY  |n ebr10865427 
938 |a EBSCOhost  |b EBSC  |n 769273 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28268103 
938 |a YBP Library Services  |b YANK  |n 11791433 
994 |a 92  |b IZTAP