-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v1.0.0-rc.1 #1
base: main
Are you sure you want to change the base?
v1.0.0-rc.1 #1
Conversation
|
||
### 1.1.1 ActID | ||
|
||
An Action Identifier (ActID) is the content address of an [Action]. It can be found direction in an Invocation: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An Action Identifier (ActID) is the content address of an [Action]. It can be found direction in an Invocation: | |
An Action Identifier (ActID) is the content address of an [Action]. It can be found directly in an Invocation: |
const actId = invocation.inv.run.act.asCid() | ||
``` | ||
|
||
A Receipt MAY have multiple input addresses. For instance, if an Action contains a promise versus when it's fully reified, the associated Receipt is the same. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A Receipt MAY have multiple input addresses. For instance, if an Action contains a promise versus when it's fully reified, the associated Receipt is the same. | |
A Receipt MAY have multiple input addresses. For instance, whether an Action contains a promise or is fully reified, the associated Receipt will be the same. |
Possible rephrasing.
|
||
# 3. Resolution | ||
|
||
Using a shared cache[^bbd], many cooperating processes can collaborate on multiple separate goals while reusing each others results. The exact mechanism is left to the implementation, but [pubsub], [gossip], and [DHT]s are all viable. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a shared cache[^bbd], many cooperating processes can collaborate on multiple separate goals while reusing each others results. The exact mechanism is left to the implementation, but [pubsub], [gossip], and [DHT]s are all viable. | |
Using a shared cache[^bbd], many cooperating processes can collaborate on multiple separate goals while reusing each other's results. The exact mechanism is left to the implementation, but [pubsub], [gossip], and [DHT]s are all viable. |
It looks like |
Preview 📚
Splitting out promises and pipelining from Invocation, since it's not required for a bunch of use cases. It also makes each spec more focused.