|
| 1 | +package lk.himash; |
| 2 | + |
| 3 | +import jdk.incubator.concurrent.ScopedValue; |
| 4 | + |
| 5 | +import java.util.List; |
| 6 | +import java.util.concurrent.Executors; |
| 7 | + |
| 8 | +public class Illustration_01 { |
| 9 | + |
| 10 | + // Scoped value example vs thread local |
| 11 | + |
| 12 | + final static ThreadLocal<String> USER_LOCAL = new ThreadLocal<>(); |
| 13 | + final static ScopedValue<String> USER_SCOPE = ScopedValue.newInstance(); |
| 14 | + |
| 15 | + |
| 16 | + public static void main(String[] args) { |
| 17 | + var users = List.of( |
| 18 | + "Neo", |
| 19 | + "Trinity", |
| 20 | + "Morpheus", |
| 21 | + "Switch", |
| 22 | + "Dozer" |
| 23 | + ); |
| 24 | + |
| 25 | + var calculator = new Calculator(); |
| 26 | + var worker = new UserWorker(calculator); |
| 27 | + |
| 28 | + // now ExecutorService extends AutoCloseable |
| 29 | + try (var executor = Executors.newThreadPerTaskExecutor(Thread.ofVirtual().factory())) { |
| 30 | + System.out.println("Starting processing"); |
| 31 | + for (var i = 0; i < 5; i++) { |
| 32 | + var user = users.get(i); |
| 33 | + |
| 34 | + System.out.printf("Starting worker user %s%n", user); |
| 35 | + executor.submit(() -> { |
| 36 | + // ThreadLocal just set |
| 37 | + USER_LOCAL.set(user); |
| 38 | + |
| 39 | + // with ScopedValue, we set the value and define the scope in which it will be available |
| 40 | + ScopedValue.where(USER_SCOPE, user) |
| 41 | + .run(worker::run); |
| 42 | + |
| 43 | + var userLocal = USER_LOCAL.get(); |
| 44 | + System.out.printf("User is still available in ThreadLocal: %s%n", userLocal); |
| 45 | + }); |
| 46 | + } |
| 47 | + } |
| 48 | + |
| 49 | + System.out.println("Processing ended"); |
| 50 | + } |
| 51 | +} |
| 52 | + |
| 53 | +class UserWorker implements Runnable { |
| 54 | + private Calculator calculator; |
| 55 | + |
| 56 | + public UserWorker(Calculator calculator) { |
| 57 | + this.calculator = calculator; |
| 58 | + } |
| 59 | + |
| 60 | + public void run() { |
| 61 | + System.out.printf("Getting user for calculation...%n"); |
| 62 | + // both we retrieve the value in the same way |
| 63 | + var user = Illustration_01.USER_SCOPE.get(); |
| 64 | + var userLocal = Illustration_01.USER_LOCAL.get(); |
| 65 | + |
| 66 | + System.out.printf("Users - ScopedValue: %s - ThreadLocal: %s%n", user, userLocal); |
| 67 | + if (!user.equals(userLocal)) { |
| 68 | + System.out.printf("Users from ScopedValue and ThreadLocal aren't the same%n", user); |
| 69 | + return; |
| 70 | + } |
| 71 | + // the first difference, in ThreadLocal we can change the value at any time |
| 72 | + Illustration_01.USER_LOCAL.set(userLocal + " -- was changed"); |
| 73 | + |
| 74 | + System.out.printf("User %s - calculating...%n", user); |
| 75 | + var answer = this.calculator.calculate(); |
| 76 | + System.out.printf("User %s - answer: %d%n", user, answer); |
| 77 | + } |
| 78 | +} |
| 79 | + |
| 80 | +class Calculator { |
| 81 | + public int calculate() { |
| 82 | + // now the ThreadLocal will see a different value |
| 83 | + // (could be change anywhere, it require us to look for the points that is changing it) |
| 84 | + var user = Illustration_01.USER_SCOPE.get(); |
| 85 | + var userLocal = Illustration_01.USER_LOCAL.get(); |
| 86 | + |
| 87 | + System.out.printf("Users - ScopedValue: %s - ThreadLocal: %s%n", user, userLocal); |
| 88 | + // pretend to go to DB to sum the rows |
| 89 | + try { |
| 90 | + Thread.sleep(500); |
| 91 | + } catch (InterruptedException ex) { |
| 92 | + } |
| 93 | + return user.length(); |
| 94 | + } |
| 95 | + |
| 96 | +} |
| 97 | + |
0 commit comments