mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
doc
This commit is contained in:
parent
7b25517a40
commit
8913f827ff
@ -403,7 +403,7 @@ packages:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.1.6"
|
||||
version: "0.1.7"
|
||||
win32:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
@ -1,3 +1,10 @@
|
||||
/// Eventual is like Dart's "Completer"
|
||||
/// It is a thread-safe concurrent data future that may eventually resolve to a value
|
||||
/// Three variants exist
|
||||
/// Eventual, which will complete each 'instance' future to that instance's value (can be different per instance) only when 'resolve' is called.
|
||||
/// EventualValue, which will complete each 'instance' future when 'resolve' is called with an owned value, and one of those instances may 'take' the value.
|
||||
/// EventualValueClone, which will complete each 'instance' future when 'resolve' is called with a Clone-able value, and any of those instances may get a clone of that value.
|
||||
/// The future returned from an Eventual::resolve() can also be awaited on to wait until all instances have been completed
|
||||
use super::*;
|
||||
|
||||
use eventual_base::*;
|
||||
|
Loading…
Reference in New Issue
Block a user