Restate Typescript SDK
    Preparing search index...

    Interface InvocationReferenceExperimental

    A reference to a target invocation, used to send signals.

    interface InvocationReference {
        attach<T>(serde?: Serde<T>): RestatePromise<T>;
        cancel(): void;
        signal<T>(name: string, serde?: Serde<T>): SignalReference<T>;
    }
    Index

    Methods