Tag

Worker

1 views collected around this technical thread.

WeiLi Technology Team
WeiLi Technology Team
Nov 25, 2024 · Mobile Development

Mastering Async and Multithread Concurrency in HarmonyOS: From Promises to TaskPool

This article explains HarmonyOS concurrency concepts, covering async patterns with Promise and async/await, the Actor model for multithreading, and practical usage of TaskPool, Worker, and the @Concurrent decorator with code examples to improve app responsiveness and performance.

AsyncConcurrencyHarmonyOS
0 likes · 16 min read
Mastering Async and Multithread Concurrency in HarmonyOS: From Promises to TaskPool
Test Development Learning Exchange
Test Development Learning Exchange
Nov 5, 2023 · Cloud Native

Understanding Kubernetes Node Types: Worker, Control Plane, and Edge Nodes

This article explains the different Kubernetes node types—including Worker, Control Plane, and Edge nodes—their roles, required software components, resource considerations, and provides practical command‑line examples for creating and managing these nodes within a cloud‑native cluster.

Control PlaneEdgeWorker
0 likes · 8 min read
Understanding Kubernetes Node Types: Worker, Control Plane, and Edge Nodes
vivo Internet Technology
vivo Internet Technology
Dec 16, 2021 · Fundamentals

In‑Depth Analysis of JDK ThreadPoolExecutor: Construction, Execution Flow, Worker Mechanics, Shutdown and Custom Extensions

The article thoroughly dissects Java’s ThreadPoolExecutor, explaining its constructor parameters, the ctl‑based state machine that governs thread creation, task queuing, worker locking, shutdown sequences, built‑in rejection policies, and demonstrates a real‑world extension via Vivo’s NexTask framework for high‑performance backend processing.

ExecutorServiceJava ConcurrencyThreadPoolExecutor
0 likes · 33 min read
In‑Depth Analysis of JDK ThreadPoolExecutor: Construction, Execution Flow, Worker Mechanics, Shutdown and Custom Extensions
Selected Java Interview Questions
Selected Java Interview Questions
Jun 2, 2020 · Backend Development

Deep Dive into ThreadPoolExecutor: Principles, State Control, and Source Code Analysis

This article provides a comprehensive analysis of Java's ThreadPoolExecutor, covering its underlying JUC synchronizer framework, core and non‑core thread handling, state management, key configuration parameters, and detailed walkthrough of critical source‑code methods such as execute, addWorker, and runWorker, supplemented with illustrative code examples.

AQSConcurrencyCoreThreadPool
0 likes · 30 min read
Deep Dive into ThreadPoolExecutor: Principles, State Control, and Source Code Analysis