<div dir="ltr">Reading through the docs for the Extent-Local preview, I was trying to understand whether<div>this would be usable for sharing a buffer/memory pool across virtual threads?</div><div><br></div><div>Suppose you have some class:</div><div><br></div><div>class BufferPool {</div><div>  private List<MemorySegment> buffers;</div><div>}</div><div><br></div><div>The document says that the data must be immutable</div><div>But there is "interior" immutability, and "surface" immutability</div><div><br></div><div>If multiple virtual threads shared the memory and some potentially</div><div>perform write operations on the MemorySegment's inside of the list</div><div>would that be valid behavior?</div><div><br></div><div>Or does this even make sense to do?</div><div>(Concurrency/parallelism are probably the things I know the least about in software)</div><div><br></div><div><br></div></div>