summaryrefslogtreecommitdiff
path: root/apps/fabric/include/fabric.hrl
diff options
context:
space:
mode:
Diffstat (limited to 'apps/fabric/include/fabric.hrl')
-rw-r--r--apps/fabric/include/fabric.hrl22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/fabric/include/fabric.hrl b/apps/fabric/include/fabric.hrl
new file mode 100644
index 00000000..6ec17b34
--- /dev/null
+++ b/apps/fabric/include/fabric.hrl
@@ -0,0 +1,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}).