I was wondering if there is a way to create an Actor from actix_web_actor that represents a ws connection from a url.
Basically something like this:
// Not real code
let resp = actix_web_actors::ws::start_from_url(WsActor {}, "ws://anotherwebsite.com/ws");
I have seen examples using other crates like websocket that establish a connection like above to a ws server, but I have not been able to find an example or method of this using actix and the Actor pattern.
Any suggestions or just a knowledgeable "no" would be greatly appreciated as I am learning more about how websockets work in general.