Documentation fixes to stdlib (#2026)
This commit is contained in:
committed by
Nikolay Igotti
parent
78aac03c10
commit
db8555b561
+3
-2
@@ -78,12 +78,13 @@
|
||||
<a name="detach"></a>
|
||||
## Object subgraph detachment
|
||||
|
||||
An object subgraph without external references can be disconnected using `detachObjectGraph` to
|
||||
An object subgraph without external references can be disconnected using `DetachedObjectGraph<T>` to
|
||||
a `COpaquePointer` value, which could be stored in `void*` data, so the disconnected object subgraphs
|
||||
can be stored in a C data structure, and later attached back with `attachObjectGraph<T>` in an arbitrary thread
|
||||
can be stored in a C data structure, and later attached back with `DetachedObjectGraph<T>.attach()` in an arbitrary thread
|
||||
or a worker. Combining it with [raw memory sharing](#shared) it allows side channel object transfer between
|
||||
concurrent threads, if the worker mechanisms are insufficient for a particular task.
|
||||
|
||||
|
||||
<a name="shared"></a>
|
||||
## Raw shared memory
|
||||
|
||||
|
||||
Reference in New Issue
Block a user