From 8c050649e97481ec16b816a2cf242c62789e0ccd Mon Sep 17 00:00:00 2001 From: Sergey Kanzhelev Date: Wed, 11 Dec 2019 10:53:54 -0800 Subject: [PATCH] links are thread safe (#379) --- specification/concurrency.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/specification/concurrency.md b/specification/concurrency.md index d2badf7608e..0964cadd21f 100644 --- a/specification/concurrency.md +++ b/specification/concurrency.md @@ -18,4 +18,5 @@ SpanBuilder is used by more than one thread/coroutine. **Span** - All methods of Span are safe to be called concurrently. -**Link** - same as SpanData. +**Link** - Links are immutable and is safe to be used concurrently. Lazy +initialized links must be implemented to be safe to be called concurrently.