Stateless handle to a actor. Allows calling actor's remote procedure calls with inferred types without establishing a persistent connection.
The actor class that this handle is for.
const room = client.get<ChatRoom>(...etc...);// This calls the action named `sendMessage` on the `ChatRoom` actor without a connection.await room.sendMessage('Hello, world!'); Copy
const room = client.get<ChatRoom>(...etc...);// This calls the action named `sendMessage` on the `ChatRoom` actor without a connection.await room.sendMessage('Hello, world!');
Private methods (e.g. those starting with _) are automatically excluded.
_
ActorHandleRaw
Stateless handle to a actor. Allows calling actor's remote procedure calls with inferred types without establishing a persistent connection.