Client for managing & connecting to actors.
new
Client(opts?: ClientOptions,)
Creates an instance of Client.
create<A = unknown>(opts: CreateOptions): Promise<ActorHandle<A>>
Creates a new actor with the provided tags.
get<A = unknown>(tags: ActorTags,opts?: GetOptions,): Promise<ActorHandle<A>>
Gets an actor by its tags, creating it if necessary.
getWithId<A = unknown>(actorId: string,opts?: GetWithIdOptions,): Promise<ActorHandle>
Gets an actor by its ID.