Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Microservice
- ingress
- 클라우드 네이티브 자바
- spring microservice
- MSA
- 클라우드 네이티브
- ansible
- 마이크로서비스
- MySQL
- devops
- Stress test
- nGrinder
- Algorithm
- 자바
- decorator 패턴
- kubernetes
- 코틀린
- cloud native java
- Kotlin
- 익명클래스
- java
- CRD
- 헬름
- Spring
- cloud native
- 쿠버네티스
- Adapter 패턴
- 머신러닝
- Semaphore
- 동기화
Archives
- Today
- Total
목록CyclicBarrier (1)
카샤의 만개시기
동기화 클래스 3편 - CyclicBarrier
실행중인 쓰레드 내부 원하는 지점에서 대기를 걸어주고 CyclicBarrier 생성자의 파라미터로 넘겨준 값 만큼 await()을 호출하면 대기하고 있던 쓰레드들의 대기를 풀어주는 동작을 할 수 있습니다. private static final int THREAD_CNT = 5; private CyclicBarrier cyclicBarrier = new CyclicBarrier(THREAD_CNT); public class SleepThread implements Runnable { private int id = 0; private Random random = new Random(System.currentTimeMillis()); public SleepThread(int id) { this.id = id;..
Java/POJO
2019. 7. 3. 16:21