aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-07-24 21:39:32 +0200
committerKim Alvefur <zash@zash.se>2022-07-24 21:39:32 +0200
commitf307901a09bbb426ae3e0ccf3dec40b69ef68b8f (patch)
treef22ad84557fd21243788a69438d4a6d2f50e1cd3 /teal-src/util
parent90dd7f694318b638ff1eef4d9a6e2e6f7f69820f (diff)
downloadprosody-f307901a09bbb426ae3e0ccf3dec40b69ef68b8f.tar.gz
prosody-f307901a09bbb426ae3e0ccf3dec40b69ef68b8f.zip
util.queue: Add Teal interface description
Diffstat (limited to 'teal-src/util')
-rw-r--r--teal-src/util/queue.d.tl21
1 files changed, 21 insertions, 0 deletions
diff --git a/teal-src/util/queue.d.tl b/teal-src/util/queue.d.tl
new file mode 100644
index 00000000..cb8458e7
--- /dev/null
+++ b/teal-src/util/queue.d.tl
@@ -0,0 +1,21 @@
+local record lib
+ record queue<T>
+ size : integer
+ count : function (queue<T>) : integer
+ enum push_errors
+ "queue full"
+ end
+
+ push : function (queue<T>, T) : boolean, push_errors
+ pop : function (queue<T>) : T
+ peek : function (queue<T>) : T
+ replace : function (queue<T>, T) : boolean, push_errors
+ type iterator = function (T, integer) : integer, T
+ items : function (queue<T>) : iterator, T, integer
+ type consume_iter = function (queue<T>) : T
+ consume : function (queue<T>) : consume_iter
+ end
+
+ new : function<T> (size:integer, allow_wrapping:boolean) : queue<T>
+end
+return lib;