deps: update maven

This commit is contained in:
Ilkka Seppälä
2024-03-27 20:09:01 +02:00
parent 2061fe8c59
commit 7d0874d88a
10 changed files with 409 additions and 136 deletions
@@ -0,0 +1,29 @@
@startuml
package com.iluwatar {
abstract class AbstractThreadLocalExample {
- RANDOM_THREAD_PARK_END : Integer {static}
- RANDOM_THREAD_PARK_START : Integer {static}
- RND : SecureRandom {static}
+ AbstractThreadLocalExample()
- getThreadName() : String
# getter() : Supplier<Integer> {abstract}
+ run()
# setter() : Consumer<Integer> {abstract}
}
class WithThreadLocal {
- value : ThreadLocal<Integer>
+ WithThreadLocal(value : ThreadLocal<Integer>)
# getter() : Supplier<Integer>
+ remove()
# setter() : Consumer<Integer>
}
class WithoutThreadLocal {
- value : Integer
+ WithoutThreadLocal(value : Integer)
# getter() : Supplier<Integer>
# setter() : Consumer<Integer>
}
}
WithThreadLocal --|> AbstractThreadLocalExample
WithoutThreadLocal --|> AbstractThreadLocalExample
@enduml