-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
194 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[workspace] | ||
members = ["core"] | ||
members = ["speare"] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Summary | ||
|
||
- [Introduction](intro.md) | ||
- [What is a Process?](./what_is_a_process.md) | ||
- [Working with Processes](./wroking_with_processes.md) | ||
- [Process Lifecycle](./process_lifecycle.md) | ||
- [What is an Actor?](./what_is_a_process.md) | ||
- [Working with Actors](./wroking_with_processes.md) | ||
- [Actor Lifecycle](./process_lifecycle.md) | ||
- [Supervision](./supervision.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
TBD 🏗️ | ||
|
||
<p hidden> | ||
# Working with Processes | ||
- a process can be communicated with through its Handle, which is received once it is spawned | ||
- a process can be spawned from a node as an unsupervised top-level process (more on that later) or spawned from other processes which will be their parent and supervise them. | ||
# Working with Actors | ||
- an actor can be communicated with through its Handle, which is received once it is spawned | ||
- an actor can be spawned from a node as an unsupervised top-level actor (more on that later) or spawned from other actors which will be their parent and supervise them. | ||
- ctx what is it etc | ||
communication between processes | ||
communication between actors | ||
- send and send_in to send messages | ||
- req and req_timeout to send requests | ||
</p> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.