Interface SubmitRequest

interface SubmitRequest {
    channels: string[];
    collection: string;
    extra: Object;
    id: string;
    index: string;
    maxRetries: number;
    op: CreateOp | DeleteOp | EditOp;
    ops: any[];
    options: any;
    projection: ReadonlyProjection;
    retries: number;
    saveMilestoneSnapshot: boolean;
    snapshot: sharedb.Snapshot;
    start: number;
    suppressPublish: boolean;
}

Hierarchy (view full)

Properties

channels: string[]
collection: string
extra: Object
id: string
index: string
maxRetries: number
ops: any[]
options: any
projection: ReadonlyProjection
retries: number
saveMilestoneSnapshot: boolean
snapshot: sharedb.Snapshot
start: number
suppressPublish: boolean