Cargando…

Java 7 concurrency cookbook /

""Java 7 Concurrency Cookbook"" is a practical Cookbook packed with real-world solutions. Intermediate?advanced level Java developers will learn from task-based recipes to use Java?s concurrent API to program thread safe solutions. If you are a Java developer who wants to take yo...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Fernández, Javier
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Pub., 2012.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 a 4500
001 EBSCO_ocn818818876
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 121124s2012 enk of 000 0 eng d
040 |a EBLCP  |b eng  |e pn  |c EBLCP  |d YDXCP  |d N$T  |d OCLCQ  |d E7B  |d UMI  |d OCLCO  |d OCLCQ  |d DEBSZ  |d OCLCF  |d OCLCO  |d OCLCQ  |d COO  |d OCLCQ  |d OCL  |d OCLCQ  |d AGLDB  |d MOR  |d CCO  |d PIFAG  |d MERUC  |d OCLCQ  |d ZCU  |d U3W  |d STF  |d WRM  |d VTS  |d NRAMU  |d ICG  |d INT  |d VT2  |d AU@  |d OCLCQ  |d A6Q  |d DKC  |d OCLCQ  |d M8D  |d OCLCQ  |d AJS  |d OCLCQ  |d OCLCO  |d OCLCQ 
019 |a 824752439  |a 961613632  |a 962594909  |a 988475398  |a 991944269  |a 1037747007  |a 1038649703  |a 1045493803  |a 1055386146  |a 1058242356  |a 1081283279  |a 1083555176  |a 1103255211  |a 1129363362 
020 |a 9781849687898  |q (electronic bk.) 
020 |a 1849687897  |q (electronic bk.) 
020 |a 9781849687881 
020 |a 1849687889 
020 |z 1849687897 
029 1 |a AU@  |b 000050635551 
029 1 |a AU@  |b 000062538992 
029 1 |a CHNEW  |b 000610111 
029 1 |a DEBBG  |b BV043117928 
029 1 |a DEBBG  |b BV044170475 
029 1 |a DEBSZ  |b 397422954 
029 1 |a DEBSZ  |b 421316233 
029 1 |a NZ1  |b 15344170 
035 |a (OCoLC)818818876  |z (OCoLC)824752439  |z (OCoLC)961613632  |z (OCoLC)962594909  |z (OCoLC)988475398  |z (OCoLC)991944269  |z (OCoLC)1037747007  |z (OCoLC)1038649703  |z (OCoLC)1045493803  |z (OCoLC)1055386146  |z (OCoLC)1058242356  |z (OCoLC)1081283279  |z (OCoLC)1083555176  |z (OCoLC)1103255211  |z (OCoLC)1129363362 
037 |a CL0500000184  |b Safari Books Online 
050 4 |a QA76.73.J38 
072 7 |a COM  |x 051310  |2 bisacsh 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a COM  |x 051130  |2 bisacsh 
082 0 4 |a 005.13  |a 005.13/3  |a 005.133 
049 |a UAMI 
100 1 |a Fernández, Javier. 
245 1 0 |a Java 7 concurrency cookbook /  |c Javier Fernández. 
260 |a Birmingham :  |b Packt Pub.,  |c 2012. 
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 
505 0 |a Java 7 Concurrency Cookbook; Java 7 Concurrency Cookbook; Credits; About the Author; About the Reviewers; www.PacktPub.com; Support files, eBooks, discount offers and more; Why Subscribe?; Free Access for Packt account holders; Instant Updates on New Packt Books; Preface; What this book covers; What you need for this book; Who this book is for; Conventions; Reader feedback; Customer support; Downloading the example code; Errata; Piracy; Questions; 1. Thread Management; Introduction; Creating and running a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also. 
505 8 |a Getting and setting thread informationGetting ready; How to do it ... ; How it works ... ; There's more ... ; See Also; Interrupting a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Controlling the interruption of a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Sleeping and resuming a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Waiting for the finalization of a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Creating and running a daemon thread; Getting ready; How to do it ... 
505 8 |a How it works ... There's more ... ; Processing uncontrolled exceptions in a thread; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Using local thread variables; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Grouping threads into a group; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Processing uncontrolled exceptions in a group of threads; Getting ready; How to do it ... ; How it works ... ; See also; Creating threads through a factory; Getting ready; How to do it ... ; How it works ... ; See also; 2. Basic Thread Synchronization. 
505 8 |a IntroductionSynchronizing a method; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Arranging independent attributes in synchronized classes; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Using conditions in synchronized code; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Synchronizing a block of code with a Lock; Getting Ready ... ; How to do it ... ; How it works ... ; There's more ... ; More Info; See also; Synchronizing data access with read/write locks; Getting Ready ... ; How to do it ... ; How it works ... ; See also. 
505 8 |a Modifying Lock fairnessGetting Ready ... ; How to do it ... ; How it works ... ; There's more ... ; See also; Using multiple conditions in a Lock; Getting Ready ... ; How to do it ... ; How it works ... ; There's more ... ; See also; 3. Thread Synchronization Utilities; Introduction; Controlling concurrent access to a resource; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Fairness in semaphores; See also; Controlling concurrent access to multiple copies of a resource; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Waiting for multiple concurrent events. 
500 |a Getting ready. 
520 |a ""Java 7 Concurrency Cookbook"" is a practical Cookbook packed with real-world solutions. Intermediate?advanced level Java developers will learn from task-based recipes to use Java?s concurrent API to program thread safe solutions. If you are a Java developer who wants to take your knowledge of concurrent programming and multithreading further, as well as discover the new concurrency features of Java 7, then ""Java 7 Concurrency Cookbook"" is for you 
588 0 |a Print version record. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Java (Computer program language)  |v Handbooks, manuals, etc. 
650 6 |a Java (Langage de programmation)  |v Guides, manuels, etc. 
650 7 |a COMPUTERS  |x Programming Languages  |x C♯  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Pascal.  |2 bisacsh 
650 7 |a Java (Computer program language)  |2 fast  |0 (OCoLC)fst00982065 
655 7 |a manuals (instructional materials)  |2 aat 
655 7 |a handbooks.  |2 aat 
655 7 |a Handbooks and manuals.  |2 fast  |0 (OCoLC)fst01423877 
655 7 |a Handbooks and manuals.  |2 lcgft 
655 7 |a Guides et manuels.  |2 rvmgf 
776 0 8 |i Print version:  |a Fernandez, Javier.  |t Java 7 Concurrency Cookbook.  |d Birmingham : Packt Publishing, ©2012  |z 9781849687881 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=499145  |z Texto completo 
938 |a ebrary  |b EBRY  |n ebr10623097 
938 |a EBSCOhost  |b EBSC  |n 499145 
938 |a YBP Library Services  |b YANK  |n 9905052 
994 |a 92  |b IZTAP