#actor-system

uactor

The fastest and most modular actor system that doesn't force you to pay for what you don't need

22 releases (10 breaking)

0.11.0 Aug 23, 2024
0.10.1 Jun 21, 2024
0.8.1 Feb 7, 2024

#18 in #actor-system

Download history 38/week @ 2024-06-22 29/week @ 2024-06-29 72/week @ 2024-07-27 316/week @ 2024-08-03 26/week @ 2024-08-10 90/week @ 2024-08-17 39/week @ 2024-08-24 16/week @ 2024-09-14 22/week @ 2024-09-21 43/week @ 2024-09-28 3/week @ 2024-10-05

84 downloads per month

MIT license

63KB
1.5K SLoC

uActor

Overview

The fastest and most modular actor system that doesn’t force you to pay for what you don’t need

Examples

Examples can be found here.

Features

  1. Simplified creation of a tokio actor topic oriented actor
  2. Minimum boilerplate code
  3. Support different tokio channels including watch, broadcast, oneshot, mpsc.
  4. Each actor is able to listen up to 30 channels.
  5. Added support of actors with single real channel and routing messages to the defined handler
    Example: Single channel
  6. Added tick (actor call each n seconds/millis/etc) support
    Example: Interval
  7. Implemented Dependency Injection on pre-start stage to solve cross-references problem ("Actor#1" needs a reference to the "Actor#2", and "Actor#2" needs a reference to "Actor#1")
    Example: dependency injection
  8. Integration with tokio/tracing, including tracing of actor lifecycle, messages, and handlers
  9. Implemented support for actors for which it is necessary to work with multiple message sources (channels) Example: Multi channel
  10. Implemented shared state for actors Example: Shared state

Other projects:

  1. Actix
  2. Ractor
  3. Tokactor
  4. tiny-tokio-actor

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uActor by you, shall be licensed as MIT, without any additional terms or conditions.

TODO

  • Реализовать логируемый актор (tracing)
    • Реализовать логирование handler'ов
    • Добавить скрин uptrace с графом акторов
    • Реализовать проброску parent_id
  • Реализовать datasaource tcp stream
  • Реализовать кластеризацию акторов. То есть, возможность запускать акторы на разных машинах и общаться между собой
  • Реализовать мониторинг акторов
  • Реализовать метрики акторов
  • Реализовать управление акторами через HTTP API

Dependencies

~4–13MB
~135K SLoC