Structured Concurrency는 결과뿐 아니라 실패·취소·관찰 관계를 기록한다
성공 출력만 확인하면 sibling이 interrupt에 반응하는지와 parent-child 관계가 진단 도구에 보이는지 알 수 없습니다.
| 관찰 | 확인 | 근거 |
|---|---|---|
| failure | join 전파·cause | exception chain |
| cancellation | sibling interrupt 반응 | task log |
| lifetime | join 없이 close 거부 | runtime failure |
| context | ScopedValue 상속 범위 | child output |
| diagnostics | JFR/thread dump 관계 | recording |
핵심: 프리뷰 평가에서 runtime behavior와 API 변화 evidence를 함께 남깁니다.