ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

270 results

The Debug Zone
CompletableFuture Explained: Multi-threaded vs Single-threaded Concurrency

In this video, we dive into the world of concurrency in Java, focusing on the powerful CompletableFuture class. We'll explore the ...

1:53
CompletableFuture Explained: Multi-threaded vs Single-threaded Concurrency

3 views

4 months ago

ProgrammerBasics
How to Use CompletableFuture in Java 17 2025?

Want async programming made simple? Learn how to use CompletableFuture in Java 17 to run tasks in the background, chain ...

1:02
How to Use CompletableFuture in Java 17 2025?

16 views

9 months ago

vlogize
How to Properly Sum Values from CompletableFuture in Java Using IntStream

Learn how to effectively sum values from `CompletableFuture` calculated in an `IntStream` in Java, and avoid common pitfalls in ...

1:43
How to Properly Sum Values from CompletableFuture in Java Using IntStream

1 view

9 months ago

vlogize
Understanding CompletableFuture in Java: Asynchronous Execution vs. Synchronous Operations

Explore the nuances of using `CompletableFuture` in Java. Learn why calling the `get()` method in a loop can lead to ...

1:44
Understanding CompletableFuture in Java: Asynchronous Execution vs. Synchronous Operations

2 views

10 months ago

vlogize
Optimizing Java API Calls with CompletableFuture and ExecutorService

Discover how to efficiently manage multiple API calls in Java using `CompletableFuture` and `ExecutorService`. Learn best ...

2:16
Optimizing Java API Calls with CompletableFuture and ExecutorService

2 views

7 months ago

vlogize
Understanding CompletableFuture in Java: Using Local Variables Across Future Results

Learn how to effectively use local variables in `CompletableFuture` results in Java, ensuring proper data handling in ...

1:48
Understanding CompletableFuture in Java: Using Local Variables Across Future Results

1 view

6 months ago

vlogize
Understanding CompletableFuture for Asynchronous Java Programming

Discover how to run methods in sequence using `CompletableFuture` in Java 8. Learn to control asynchronous execution and ...

2:08
Understanding CompletableFuture for Asynchronous Java Programming

2 views

7 months ago

vlogize
How to Return a List in CompletableFuture without Wrapping: A Java Guide

Discover how to efficiently return a flat `List` from multiple `CompletableFuture` instances in Java. Explore practical solutions to ...

1:42
How to Return a List in CompletableFuture without Wrapping: A Java Guide

0 views

9 months ago

vlogize
Understanding CompletableFuture Types in Java: A Guide to Managing Requests and Responses

Discover how to properly type your `CompletableFuture` in Java, ensuring smooth request management without compiler errors.

2:04
Understanding CompletableFuture Types in Java: A Guide to Managing Requests and Responses

0 views

6 months ago

vlogize
CompletableFuture vs ExecutorService: Understanding the Key Differences and Advantages

Explore the differences between `CompletableFuture` and `ExecutorService`. Learn about the advantages of using ...

1:17
CompletableFuture vs ExecutorService: Understanding the Key Differences and Advantages

9 views

4 months ago

vlogize
Understanding the completableFuture whenComplete Behavior in Java: A Guide to Sequential Processing

Explore the strange behavior of Java's `completableFuture` when using `whenComplete`. Learn how to ensure tasks run ...

2:09
Understanding the completableFuture whenComplete Behavior in Java: A Guide to Sequential Processing

2 views

4 months ago

vlogize
Understanding CompletableFuture in Java: When to Use join() vs thenCompose()

Explore the efficient use of `CompletableFuture` in Java, including key differences between `join()` and `thenCompose()`, and ...

2:06
Understanding CompletableFuture in Java: When to Use join() vs thenCompose()

14 views

11 months ago

vlogize
How to Effectively Handle CompletableFuture Execution Interruptions in Java

Learn how to gracefully manage `CompletableFuture` cancellations and exceptions in Java, ensuring robust and fault-tolerant ...

1:39
How to Effectively Handle CompletableFuture Execution Interruptions in Java

2 views

9 months ago

vlogize
Understanding the Purpose of CompletableFuture's complete() Method in Java

Dive deep into the role and significance of the `complete()` method in `CompletableFuture`. Explore its usage, advantages, and a ...

2:21
Understanding the Purpose of CompletableFuture's complete() Method in Java

2 views

11 months ago

vlogize
How to Enforce Timeout and Cancel Async CompletableFuture Jobs in Java

Discover how to effectively handle timeout and cancellation for async tasks using CompletableFuture in Java. This comprehensive ...

2:30
How to Enforce Timeout and Cancel Async CompletableFuture Jobs in Java

14 views

5 months ago

vlogize
How to Await CompletableFutures Inside a CompletableFuture in Java

Discover how to effectively await multiple async operations within a CompletableFuture in Java without blocking processes.

2:00
How to Await CompletableFutures Inside a CompletableFuture in Java

1 view

9 months ago

vlogize
Resolving Index Issues in Spring Boot's @ Async Multithreading with CompletableFuture

The Problem Explained In asynchronous programming, particularly with Java's CompletableFuture, the loop index variable may ...

1:56
Resolving Index Issues in Spring Boot's @ Async Multithreading with CompletableFuture

6 views

5 months ago

vlogize
Understanding the CompletableFuture Completion Sequence in Java

Discover how to correctly use `CompletableFuture` in Java to handle completion actions. Learn about common mistakes and their ...

2:02
Understanding the CompletableFuture Completion Sequence in Java

0 views

11 months ago

vlogize
How to Ensure Sequential Execution of CompletableFutures in Java join()

Discover how to resolve issues with `CompletableFuture` in Java, ensuring sequential execution between dependent tasks for ...

1:28
How to Ensure Sequential Execution of CompletableFutures in Java join()

2 views

11 months ago

vlogize
How to Handle Asynchronous Calls with CompletableFuture in Java

A deep dive into using CompletableFuture in Java for asynchronous method calls, including handling true/false returns and ...

2:08
How to Handle Asynchronous Calls with CompletableFuture in Java

1 view

11 months ago

vlogize
Understanding the orTimeout Method in CompletableFuture: Why it’s Better than Just get

Discover the advantages of using `orTimeout` with `get` in Java's CompletableFuture. Learn how this method enhances your ...

1:28
Understanding the orTimeout Method in CompletableFuture: Why it’s Better than Just get

4 views

10 months ago

vlogize
Understanding CompletableFuture Exception Handling in Java

Discover how to effectively manage exceptions in `CompletableFuture` using `exceptionally()` and `handle()` methods in Java.

2:00
Understanding CompletableFuture Exception Handling in Java

1 view

5 months ago

vlogize
How to Get a Response from CompletableFuture in Java

Learn how to handle responses efficiently using `CompletableFuture.allOf()` in Java and return a list of results to enhance your ...

1:58
How to Get a Response from CompletableFuture in Java

0 views

10 months ago

vlogize
How to Run Asynchronous Code in Java with CompletableFuture

Learn how to effectively use `CompletableFuture` in Java to run asynchronous code and control the execution order of statements.

1:49
How to Run Asynchronous Code in Java with CompletableFuture

1 view

9 months ago

vlogize
Solving the CompletableFuture Execution Issue in Java

Discover why your `CompletableFuture` might not be executing and how to fix it with practical examples in Java. --- This video is ...

2:23
Solving the CompletableFuture Execution Issue in Java

3 views

11 months ago