#actor #wasmcloud #health-check #api-bindings

wasmcloud-actor-core

wasmCloud Core Actor Interface

4 releases

0.2.3 Apr 16, 2021
0.2.2 Feb 22, 2021
0.2.1 Feb 16, 2021
0.2.0 Feb 10, 2021

#1414 in WebAssembly

Download history 81/week @ 2023-12-06 160/week @ 2023-12-13 112/week @ 2023-12-20 77/week @ 2023-12-27 79/week @ 2024-01-03 134/week @ 2024-01-10 110/week @ 2024-01-17 86/week @ 2024-01-24 59/week @ 2024-01-31 97/week @ 2024-02-07 109/week @ 2024-02-14 75/week @ 2024-02-21 126/week @ 2024-02-28 140/week @ 2024-03-06 184/week @ 2024-03-13 114/week @ 2024-03-20

587 downloads per month
Used in 24 crates (22 directly)

Apache-2.0

10KB
91 lines

crates.io  Rust license  documentation

wasmcloud Core Actor Interface

All actors must respond to the core HealthCheckRequest message with either an Err or a HealthCheckResponse. The following is an example of what an actor looks like that only responds to the health check message:

extern crate wasmcloud_actor_core as actor;
use wapc_guest::HandlerResult;
use actor::{HealthCheckRequest, HealthCheckResponse, Handlers};

 #[actor::init]
 fn init() {
     Handlers::register_health_request(health);
 }

 fn health(_msg: HealthCheckRequest) -> HandlerResult<HealthCheckResponse> {
     Ok(HealthCheckResponse::healthy())
 }

The actor::init macro defines a health check message responder that always returns healthy() by default. If you don't need to provide your own custom logic for the health check, then your init function can be simplified as follows:

extern crate wasmcloud_actor_core as actor;
use wapc_guest::HandlerResult;

#[actor::init]
fn init() {
    // register your message handlers here
}

Dependencies

~1.1–2MB
~43K SLoC