lemmy-js-client
    Preparing search index...

    Type Alias ReadableFederationState

    type ReadableFederationState = {
        fail_count: number;
        instance_id: InstanceId;
        last_retry_at?: string;
        last_successful_id?: ActivityId;
        last_successful_published_time_at?: string;
        next_retry?: string;
    }
    Index

    Properties

    fail_count: number

    how many failed attempts have been made to send the next activity

    instance_id: InstanceId
    last_retry_at?: string

    timestamp of the last retry attempt (when the last failing activity was resent)

    last_successful_id?: ActivityId

    the last successfully sent activity id

    last_successful_published_time_at?: string
    next_retry?: string

    timestamp of the next retry attempt (null if fail count is 0)