-
https://crates.io/crates/actix-web-actors
> This crate is deprecated. Migrate to [actix-ws](https://crates.io/crates/actix-ws).
-
Sub-protocols are a part of the WebSocket specification (see [RFC 6455](https://datatracker.ietf.org/doc/html/rfc6455#section-11.3.4)):
> ```
> The |Sec-WebSocket-Protocol| header field is used in t…
-
Thank you very much for your contributions to this project. I have already used it in practical projects, and the asynchronous features have been very helpful.
Here are some thoughts I had while us…
-
Unfortunately I discovered on their discord last night that Actix is going to be deprecated in a few months. The recommendation the Actix team have been suggesting is to follow the patterns within [th…
-
Here is code that reproduces the issue:
`main.rs`
```rust
struct A {}
impl actix::Actor for A {
type Context = actix::Context;
fn started(&mut self, ctx: &mut Self::Context) {
…
-
Would love to see some examples of the actors here, specifically the listener actor.
I'm a little stuck on how to spawn the actor, and setting up the `SessionAcceptor`. I'm coming from `actix` with…
napei updated
3 weeks ago
-
I'm getting some compile errors when trying to use a [tokio::sync::watch](https://docs.rs/tokio/latest/tokio/sync/watch/index.html) channel with an Actix WebSocket - and send a message whenever there …
-
Hands-On-Microservices-with-Rust/Chapter12
```
2 | use actix::fut::wrap_future;
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
error[E0277]: the trait …
-
Whenever trying to compile and run it, you get the following error:
```
error[E0277]: the trait bound `server::MppServer: actix::Actor` is not satisfied
--> src/session/ws_session.rs:18:22
|
…
ar065 updated
3 years ago
-
# Actix actor의 AsyncContext 활용하기 (2) – my-dev-note –
지난 글에 이어 Actix actor의 AsyncContext 함수를 사용하는 방법을 알아봅니다.
[http://huijeong-kim.github.io/2022/08/27/actix-actor-async-ctx-2/](http://huijeong-kim.gi…