Interface IndexEntry

Each entry can store arbitrary data and belongs to a group.

interface IndexEntry {
    entryId: string;
    groupId: string;
    payload: MessagePayload;
}

Properties

entryId: string

Entry identifier.

groupId: string

The group this entry belongs to.

Entry data.