summaryrefslogtreecommitdiff
path: root/apps/fabric/include/fabric.hrl
blob: 6ec17b34841634d04fde530ad7a2c032f9c49176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-include_lib("eunit/include/eunit.hrl").

-record(collector, {
    query_args,
    callback,
    counters,
    buffer_size,
    blocked = [],
    total_rows = 0,
    offset = 0,
    rows = [],
    skip,
    limit,
    keys,
    os_proc,
    reducer,
    lang,
    sorted,
    user_acc
}).

-record(view_row, {key, id, value, doc, worker}).