On this page
Methods

Interface IActor

This interface allowing to substitute only the sendAsync method of the Actor class.

interface IActor {
    sendAsync<T extends MessageType>(
        message: ActorMessage<T>,
        abortController?: AbortController,
    ): Promise<RequestResponseMessageMap[T][1]>;
}

Implemented by

Index

Methods

Methods

Was this helpful?
SDK JS
Reference
IActor