Documentation
    Preparing search index...
    interface Actor {
        actorId: string;
        connectableTs?: number;
        crashPolicy: Rivet.CrashPolicy;
        createTs: number;
        datacenter: string;
        destroyTs?: number;
        key?: string;
        name: string;
        namespaceId: string;
        pendingAllocationTs?: number;
        rescheduleTs?: number;
        runnerNameSelector: string;
        sleepTs?: number;
        startTs?: number;
    }
    Index

    Properties

    actorId: string
    connectableTs?: number

    Denotes when the actor was last connectable. Null if actor is not running.

    crashPolicy: Rivet.CrashPolicy
    createTs: number

    Denotes when the actor was first created.

    datacenter: string
    destroyTs?: number

    Denotes when the actor was destroyed.

    key?: string
    name: string
    namespaceId: string
    pendingAllocationTs?: number

    Denotes when the actor started waiting for an allocation.

    rescheduleTs?: number

    Denotes when the actor will try to allocate again. If this is set, the actor will not attempt to allocate until the given timestamp.

    runnerNameSelector: string
    sleepTs?: number

    Denotes when the actor entered a sleeping state.

    startTs?: number

    Denotes when the actor was first made connectable. Null if never.