Parallel Functional Programming with Java
Focused View
14:47:12
78 View
001. Parallel Functional Programming with Java LiveLessons (Video Training) Introduction.mp4
02:28
001. Learning objectives.mp4
01:04
002. 1.1 Understand Concurrent Programming Concepts.mp4
05:16
003. 1.2 Recognize How Concurrent Programs are Developed in Java.mp4
06:29
004. 1.3 Understand Parallel Programming Concepts.mp4
05:24
005. 1.4 Recognize How Parallel Programs are Developed in Java.mp4
07:12
006. 1.5 Learn the History of Parallelism and Concurrency in Java.mp4
12:52
007. 1.6 Evaluate the Concurrency and Parallelism Mechanisms in Java.mp4
05:04
008. 1.7 Apply Java Parallelism to Case Study Apps.mp4
04:33
001. Learning objectives.mp4
01:12
002. 2.1 Recognizing Javas Supported Programming Paradigms.mp4
06:47
003. 2.2 Understand Javas Key Functional Programming Concepts and Features.mp4
09:53
004. 2.3 Recognize How Java Combines Object-Oriented and Functional Programming.mp4
07:23
005. 2.4 Understand Java Lambda Expressions.mp4
09:38
006. 2.5 Understand Java Method References.mp4
08:06
007. 2.6 Understand Java Functional Interfaces Overview.mp4
05:48
008. 2.7 Understand the Java Predicate Functional Interface.mp4
05:20
009. 2.8 Understand the Java Function Functional Interface.mp4
06:59
010. 2.9 Understand the Java BiFunction Functional Interface.mp4
03:33
011. 2.10 Understand the Java Supplier Functional Interface.mp4
10:23
012. 2.11 Understand the Consumer Java Functional Interface.mp4
03:10
013. 2.12 Understand Other Properties of Java Functional Interfaces.mp4
03:42
014. 2.13 Apply Java Functional Programming Features to ThreadJoinTest Case Study.mp4
04:53
015. 2.14 Apply Java Functional Programming Features to Start and Join Threads.mp4
05:10
016. 2.15 Evaluate the Pros and Cons of Applying Java Functional Programming Features.mp4
06:41
001. Learning objectives.mp4
01:32
002. 3.1 Understand Java Streams Overview.mp4
04:56
003. 3.2 Understand Java Streams Common Operations.mp4
05:46
004. 3.3 Visualizing Java Streams in Action.mp4
02:01
005. 3.4 Compare Java Sequential vs. Parallel Streams.mp4
05:22
006. 3.5 Recognize Java Streams Benefits.mp4
04:05
007. 3.6 Contrasting Java Streams with Java IO Streams and Java Collections.mp4
07:36
008. 3.7 Contrasting Java Streams with Other Technologies.mp4
05:02
009. 3.8 Understand the SimpleSearchStream Program.mp4
03:14
010. 3.9 Visualize the WordSearcher.findWords() Method.mp4
04:18
011. 3.10. Recognize Common Java Streams Factory Methods.mp4
04:36
012. 3.11 Recognize Other Java Streams Factory Methods.mp4
05:06
013. 3.12 Understand Java Streams Aggregate Operations.mp4
05:53
014. 3.13 Understand Java Streams Short-Circuit Operations.mp4
01:54
015. 3.14 Understand Java Streams Intermediate Operations map() and mapToInt().mp4
05:29
016. 3.15 Understand Java Streams Intermediate Operations filter() and flatMap().mp4
04:59
017. 3.16 Understand Java Streams Intermediate Operations dropWhile() and takeWhil.mp4
08:41
018. 3.17 Understand Java Streams Terminal Operations.mp4
01:58
019. 3.18 Understand the Java Streams forEach() Terminal Operation.mp4
03:41
020. 3.19 Understand the Java Streams collect() Terminal Operation.mp4
07:22
021. 3.20. Understand the Java Streams reduce() Terminal Operation.mp4
06:28
022. 3.21 Contrast the Java Streams reduce() and collect() Terminal Operations.mp4
03:59
023. 3.22 Visualize WordSearcher.printResults().mp4
03:08
024. 3.23 Learn How to Implement WordSearcher.printResults().mp4
05:47
025. 3.24 Visualize WordSearcher.printSuffixSlice().mp4
03:51
026. 3.25 Learn How to Implement WordSearcher.printSuffixSlice().mp4
03:39
027. 3.26 Recognize External vs. Internal Iterators in Java.mp4
05:02
028. 3.27 Evaluate External vs. Internal Iterators in Java.mp4
04:42
001. Learning objectives.mp4
01:09
002. 3.28 Understand Java Streams Internals Splitting and Combining.mp4
04:13
003. 3.29 Understand Java Stream Internals Construction.mp4
06:04
004. 3.30. Understand Java Stream Internals Execution.mp4
02:32
005. 3.31 Understand Java Streams Spliterators.mp4
06:41
006. 3.32 Apply Java Streams Spliterators.mp4
06:25
007. 3.33 Understand Java Streams Non-Concurrent Collectors.mp4
02:17
008. 3.34 Understand the Java Streams Non-Concurrent Collector API.mp4
06:09
009. 3.35 Learn How Pre-defined Non-Concurrent Collectors are Implemented.mp4
04:10
010. 3.36 Learn How to Implement Custom Non-Concurrent Collectors.mp4
06:31
001. Learning objectives.mp4
01:24
002. 3.37 Understand the Java Sequential SearchStreamGang Case Study.mp4
03:56
003. 3.38 Understand the Java Sequential SearchStreamGang Object-Oriented Implement.mp4
09:02
004. 3.39 Visualize Java Sequential SearchStreamGang Hook Methods.mp4
06:06
005. 3.40. Learn How to Implement Java Sequential SearchStreamGang Hook Methods.mp4
07:01
006. 3.41 Visualize the Java Sequential SearchStreamGang printPhrases() Method.mp4
03:29
007. 3.42 Learn How to Implement the Java Sequential SearchStreamGang printPhrases(.mp4
05:19
008. 3.43 Learn How to Implement the Java Sequential SearchStreamGang File Input He.mp4
03:39
009. 3.44 Apply Spliterator to the Java Sequential SearchStreamGang Case Study (Par.mp4
05:16
010. 3.45 Apply Spliterator to the Java Sequential SearchStreamGang Case Study (Par.mp4
04:19
011. 3.46 Evaluate the Java Sequential SearchStreamGang Case Study.mp4
04:20
012. 3.47 Learn How to Avoid Common Java Streams Programming Mistakes.mp4
04:28
001. Learning objectives.mp4
01:32
002. 4.1 Transition to Parallelism and Parallel Streams.mp4
04:35
003. 4.2 Learn How Java Parallel Streams Work Under the H.mp4
07:30
004. 4.3 Avoid Programming Hazards with Java Parallel Stre.mp4
06:14
005. 4.4 Understand the Java SearchWithParallelStreams Cas.mp4
02:31
006. 4.5 Visualize Java SearchWithParallelStreams Hook Met.mp4
06:26
007. 4.6 Learn How to Implement Java SearchWithParallelStr.mp4
04:04
008. 4.7 Evaluate the Java SearchWithParallelStreams Case .mp4
05:40
001. Learning objectives.mp4
01:07
002. 4.8 Understand Java Parallel Stream Internals Introduction.mp4
02:02
003. 4.9 Understand Java Parallel Stream Internals Splitting, Combining, and Po.mp4
03:57
004. 4.10. Understand Java Parallel Streams Internals Order of Processing Overv.mp4
02:50
005. 4.11 Understand Java Parallel Stream Internals Order of Results Overview.mp4
02:04
006. 4.12 Understand Java Parallel Streams Internals Order of Results for Colle.mp4
03:32
007. 4.13 Understand Java Parallel Streams Internals Order of Results for Opera.mp4
05:55
008. 4.14 Understand Java Parallel Streams Internals Partitioning.mp4
06:06
009. 4.15 Understand Java Parallel Streams Internals Demoing Spliterator Perfo.mp4
05:01
010. 4.16 Understand Java Parallel Streams Internals Parallel Processing via Co.mp4
07:57
011. 4.17 Understand Java Parallel Streams Internals Mapping Onto Common Fork-J.mp4
06:48
012. 4.18 Understand Java Parallel Streams Internals Configuring Common Fork-Jo.mp4
04:16
013. 4.19 Understand Java Parallel Streams Internals Demoing How to Configure .mp4
04:39
014. 4.20. Understand Java Parallel Streams Internals Combining Results (Part 1.mp4
05:15
015. 4.21 Understand Java Parallel Streams Internals Combining Results (Part 2).mp4
06:19
016. 4.22 Understand Java Parallel Streams Internals Non-Concurrent and Concurr.mp4
05:14
017. 4.23 Understand Java Parallel Streams Internals Non-Concurrent and Concurr.mp4
05:58
018. 4.24 Understand Java Parallel Streams Internals Demoing Collector Perform.mp4
03:48
001. Learning objectives.mp4
02:01
002. 4.25 Understand the Java SearchWithParallelSpliterator Case Study.mp4
04:36
003. 4.26 Understand the Java SearchWithParallelSpliterator PhraseMatchSpliterator .mp4
04:19
004. 4.27 Understand the Java SearchWithParallelSpliterator PhraseMatchSpliterator .mp4
03:05
005. 4.28 Understand the Java SearchWithParallelSpliterator PhraseMatchSpliterator .mp4
08:15
006. 4.29 Evaluate the Java SearchWithParallelSpliterator Case Study.mp4
03:44
007. 4.30. Learn When to Use Java Parallel Streams.mp4
04:36
008. 4.31 Learn When Not to Use Java Parallel Streams.mp4
08:08
009. 4.32 Understand the Java Parallel ImageStreamGang Case Study.mp4
09:00
010. 4.33 Understand the Java Parallel ImageStreamGangStructure and Functionality.mp4
05:35
011. 4.34 Visualize the Behaviors of the Java Parallel ImageStreamGang Case Study.mp4
04:29
012. 4.35 Learn How to Implement Behaviors in the Java Parallel ImageStreamGang Cas.mp4
07:23
013. 4.36 Evaluate the Java Parallel ImageStreamGang Case Study.mp4
03:13
014. 4.37 Evaluate the Benefits of Java Parallel Streams.mp4
03:50
015. 4.38 Evaluate the Limitations of Java Parallel Streams.mp4
05:00
001. Learning objectives.mp4
01:48
002. 5.1 Understandthe Fork-Join Framework.mp4
04:00
003. 5.2 Understand the ForkJoinPool Class in the Java Fork-Join Framework.mp4
02:42
004. 5.3 Understand the ForkJoinTask Class in theJava Fork-Join Framework.mp4
06:32
005. 5.4 Understand subclasses of ForkJoinTaskin the Java Fork-Join Framework.mp4
02:22
006. 5.5 Understand Key Methods in the ForkJoinPool Class.mp4
04:46
007. 5.6 Understand Key Methods in the ForkJoinTask Class.mp4
03:50
008. 5.7 Understand Key Methods in the RecursiveAction andRecursiveTask Classes.mp4
04:02
009. 5.8 Understand Java Fork-Join Framework Internals Worker Threads.mp4
04:20
010. 5.9 Understand Java Fork-Join Framework Internals Work Stealing.mp4
06:08
011. 5.10. Understand How the Java Fork-Join Framework Maximizes Utilization with Common Fork-Join Pool.mp4
07:30
012. 5.11 Understand the Java Fork-Join Frameworks Managed Blocker Interface.mp4
03:38
013. 5.12 Understand How to Apply the Java Fork-Join Frameworks Managed Blocker Interface.mp4
02:56
014. 5.13 Understand How to Encapsulate the Java Fork-Join Frameworks Managed Blocker Interface.mp4
05:40
015. 5.14 Evaluate Different Java Fork-Join Framework Programming Models.mp4
07:25
016. 5.15 Evaluate the applyAllIter() Java Fork-Join Framework Programming Model.mp4
07:47
017. 5.16 Evaluate the applyAllSplit() Java Fork-Join Framework Programming Model.mp4
08:48
018. 5.17 Evaluate the applyAllSplitIndex() Java Fork-Join Framework Programming Model.mp4
09:12
019. 5.18 Compare and Contrast All the Java Fork-Join Framework Programming Models.mp4
06:22
001. Learning objectives.mp4
01:27
002. 6.1 Understand Reactive Programming Principles.mp4
01:44
003. 6.2 Recognize the Structure and Functionality of the Java Completable Future.mp4
05:26
004. 6.3 Learn How Java Completable Futures Map Onto Reactive Programming Princip.mp4
05:03
005. 6.4 Know the Relationship Between Reactive Programming and Java Reactive Str.mp4
04:07
006. 6.5 Understand the Pros and Cons of Synchrony.mp4
06:12
007. 6.6 Understand the Pros and Cons of Asynchrony.mp4
10:04
008. 6.7 Understand Java Futures.mp4
04:39
009. 6.8 Visualize Java Futures in Action.mp4
03:03
010. 6.9 Apply Java Futures in Practice.mp4
04:10
011. 6.10. Evaluate the Pros and Cons of Java Futures.mp4
04:55
012. 6.11 Recognize How Java Completable Futures Overcome Limitations of Java Fut.mp4
03:37
013. 6.12 Understand Method Groupings in the Java Completable Futures API.mp4
06:28
014. 6.13 Understand Basic Java CompletableFuture Features.mp4
04:54
015. 6.14 Apply Basic Java CompletableFuture Features.mp4
03:36
001. Learning objectives.mp4
01:08
002. 6.15 Understand Advanced Java CompletableFuture Features Introducing Fa.mp4
04:50
003. 6.16 Understand Advanced Java CompletableFuture Features Applying Facto.mp4
02:13
004. 6.17 Understand Advanced Java CompletableFuture Features Factory Method.mp4
05:45
005. 6.18 Understand Advanced Java CompletableFuture Features Introducing Co.mp4
07:38
006. 6.19 Understand Advanced Java CompletableFuture Features Grouping Compl.mp4
04:24
007. 6.20. Understand Advanced Java CompletableFuture Features Single Stage .mp4
09:20
008. 6.21 Understand Advanced Java CompletableFuture Features Two Stage Comp.mp4
03:18
009. 6.22 Understand Advanced Java CompletableFuture Features Two Stage Comp.mp4
03:06
010. 6.23 Understand Advanced Java CompletableFuture Features Applying Compl.mp4
06:40
011. 6.24 Understand Advanced Java CompletableFuture Features Handling Runti.mp4
03:11
012. 6.25 Understand Advanced Java CompletableFuture Features Handling Runti.mp4
05:54
013. 6.26 Understand Advanced Java CompletableFuture Features Arbitrary-Arit.mp4
02:38
014. 6.27 Understand Advanced Java Completable Future Features Implementing .mp4
08:09
001. Learning objectives.mp4
01:15
002. 6.28 Understand the Java Completable Future Image Crawler Case Study (Part .mp4
04:28
003. 6.29 Understand the Java Completable Future Image Crawler Case Study (Part .mp4
03:17
004. 6.30. Understand the Java Completable Future Image Crawler Case Study (Part.mp4
05:39
005. 6.31 Understand the Java Completable Future Image Crawler Case Study (Part .mp4
05:36
006. 6.32 Understand the Java Completable Future ImageStreamGang Case Study.mp4
03:04
007. 6.33 Understand the Java Completable Future ImageStreamGang Case Study Appl.mp4
03:33
008. 6.34 Understand the Java Completable Future ImageStreamGang Case Study Appl.mp4
03:33
009. 6.35 Understand the Java Completable Future ImageStreamGang Case Study Appl.mp4
04:37
010. 6.36 Understand the Java Completable Future ImageStreamGang Case Study Appl.mp4
04:21
011. 6.37 Understand the Java Completable Future ImageStreamGang Case Study Appl.mp4
03:27
012. 6.38 Understand the Java Completable Future ImageStreamGang Case Study Stre.mp4
05:23
013. 6.39 Evaluate the Pros of the Java Completable Futures Framework.mp4
04:05
014. 6.40. Evaluate the Cons of the Java Completable Futures Framework.mp4
02:43
015. 6.41 Understand Enhancements to the Java Completable Futures Framework.mp4
06:29
001. Part 1 Introduction.mp4
00:43
001. Part 2 Introduction.mp4
01:28
001. Part 3 Introduction.mp4
01:15
001. Parallel Functional Programming with Java LiveLessons (Video Training) Summary.mp4
02:38
More details
User Reviews
Rating
average 0
Focused display
Category

LiveLessons
View courses LiveLessonsPearson's video training library is an indispensable learning tool for today's competitive job market. Having essential technology training and certifications can open doors for career advancement and life enrichment. We take learning personally. We've published hundreds of up-to-date videos on wide variety of key topics for Professionals and IT Certification candidates. Now you can learn from renowned industry experts from anywhere in the world, without leaving home.
- language english
- Training sessions 183
- duration 14:47:12
- Release Date 2023/11/03