isolate_agents 0.2.0
isolate_agents: ^0.2.0 copied to clipboard
Agents are state that lives on a background isolate.
0.2.0 #
- Converted
Agent.errorto return anAgentErrorclass. - Started handling errors in
Agent.create.
0.1.0 #
- Adds
Agent.errorandAgent.resetError. - Adds protection from talking to killed Agents.
- Updated naming of methods based on feedback:
- deref -> read
- query -> eliminated for read
- create -> eliminated for new create
- createWithResult -> create
- send -> update
0.0.7 #
- Adds
Agent.createWithResult.
0.0.6 #
- Switched implementation to use SendPort API instead of completers so that Agents can be sent across Isolates.
0.0.5 #
- Fixes
querycalls where the return types differ from the agent type.
0.0.4 #
- Adds
querymethod.
0.0.3 #
- Makes Agents null-safe.
0.0.2 #
- Updates README.md
- Adds
exit()method.
0.0.1 #
- Initial import.