thespis

Crates.iothespis
lib.rsthespis
version0.2.0
sourcesrc
created_at2019-08-30 18:47:44.149098
updated_at2022-05-30 13:40:03.229415
descriptionThe interface of the thespis actor model (contains only traits).
homepagehttps://github.com/thespis-rs/thespis_iface
repositoryhttps://github.com/thespis-rs/thespis_iface
max_upload_size
id160975
size33,153
Naja Melan (najamelan)

documentation

https://docs.rs/thespis

README

thespis

standard-readme compliant Build Status Docs crates.io

Interface of the thespis actor model.

The interface of the thespis actor model (contains only traits). This defines the expected behavior for Addresses that can send to Actors, as well as the [Handler] trait and the [Message] trait.

There used to be a Mailbox trait, but it turns out that the mailbox is not depended on by any of the other components, so it's iplementation can be freely changed without requiring an interface.

The purpose for the split between interface and implementation is 2-fold:

  1. Libraries can expose an actor based interface without having to depend on an implementation. Consumers can then choose any implementation they want and everything will remain inter-operable.
  2. Each component can be individually replaced and composed if you need a different behavior then the reference implementation.

The reference implementation can be found in the thespis_impl crate.

To get started with thespis, please check out the guide level documentation.

Table of Contents

Install

With cargo add: cargo add thespis

With cargo yaml:

dependencies:

   thespis: ^0.2

In Cargo.toml:

[dependencies]

   thespis = "0.2"

Upgrade

Please check out the changelog when upgrading.

Dependencies

This crate has few dependencies. Cargo will automatically handle it's dependencies for you. Check Cargo.yml for the list of dependencies.

There is one optional feature, derive, enabled by default which adds proc macros for deriving the Message trait as well as removing some boilerplate when implementing Handler.

Security

This crate does not use unsafe, but it's dependencies do.

Usage

Please refer to the thespis_impl crate to see examples of usage.

API

API documentation can be found on docs.rs.

Contributing

Please check out the contribution guidelines.

Testing

As this crate only provides traits, there aren't any tests. You can check the thespis_impl crate for the tests.

Code of conduct

Any of the behaviors described in point 4 "Unacceptable Behavior" of the Citizens Code of Conduct are not welcome here and might get you banned. If anyone, including maintainers and moderators of the project, fail to respect these/your limits, you are entitled to call them out.

License

Unlicence

Commit count: 117

cargo fmt