Skip to content

Commit

Permalink
CI: Automated build push
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 10, 2024
1 parent d948370 commit e17d2f5
Show file tree
Hide file tree
Showing 13 changed files with 8,300 additions and 0 deletions.
1,609 changes: 1,609 additions & 0 deletions docs/dochack.js

Large diffs are not rendered by default.

1,026 changes: 1,026 additions & 0 deletions docs/nimdoc.out.css

Large diffs are not rendered by default.

1,432 changes: 1,432 additions & 0 deletions docs/theindex.html

Large diffs are not rendered by default.

163 changes: 163 additions & 0 deletions docs/zmq.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/zmq.idx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nimTitle zmq zmq.html module zmq 0
293 changes: 293 additions & 0 deletions docs/zmq/asynczmq.html

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions docs/zmq/asynczmq.idx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
nimTitle asynczmq zmq/asynczmq.html module zmq/asynczmq 0
nim AsyncZPollCB zmq/asynczmq.html#AsyncZPollCB type AsyncZPollCB 7
nim AsyncZPoller zmq/asynczmq.html#AsyncZPoller object AsyncZPoller 9
nim len zmq/asynczmq.html#len,AsyncZPoller proc len(poller: AsyncZPoller): int 14
nim `=destroy` zmq/asynczmq.html#=destroy,AsyncZPoller proc `=destroy`(obj: AsyncZPoller) 38
nim register zmq/asynczmq.html#register,AsyncZPoller,ZSocket,int,AsyncZPollCB proc register(poller: var AsyncZPoller; sock: ZSocket; event: int; cb: AsyncZPollCB) 43
nim register zmq/asynczmq.html#register,AsyncZPoller,ZConnection,int,AsyncZPollCB proc register(poller: var AsyncZPoller; conn: ZConnection; event: int;\n cb: AsyncZPollCB) 48
nim register zmq/asynczmq.html#register,AsyncZPoller,ZPollItem,AsyncZPollCB proc register(poller: var AsyncZPoller; item: ZPollItem; cb: AsyncZPollCB) 52
nim initZPoller zmq/asynczmq.html#initZPoller,sinkZPoller,AsyncZPollCB proc initZPoller(poller: sink ZPoller; cb: AsyncZPollCB): AsyncZPoller 57
nim initZPoller zmq/asynczmq.html#initZPoller,openArray[tuple[ZConnection,AsyncZPollCB]],cshort proc initZPoller(args: openArray[tuple[item: ZConnection, cb: AsyncZPollCB]];\n event: cshort): AsyncZPoller 61
nim pollAsync zmq/asynczmq.html#pollAsync,AsyncZPoller,int proc pollAsync(poller: AsyncZPoller; timeout: int = 2): Future[int] 66
nim receiveAsync zmq/asynczmq.html#receiveAsync,ZConnection proc receiveAsync(conn: ZConnection): Future[string] 85
nim sendAsync zmq/asynczmq.html#sendAsync,ZConnection,string,ZSendRecvOptions proc sendAsync(conn: ZConnection; msg: string; flags: ZSendRecvOptions = DONTWAIT): Future[\n void] 120
nimgrp register zmq/asynczmq.html#register-procs-all proc 43
nimgrp initzpoller zmq/asynczmq.html#initZPoller-procs-all proc 57
2,406 changes: 2,406 additions & 0 deletions docs/zmq/bindings.html

Large diffs are not rendered by default.

301 changes: 301 additions & 0 deletions docs/zmq/bindings.idx

Large diffs are not rendered by default.

689 changes: 689 additions & 0 deletions docs/zmq/connections.html

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions docs/zmq/connections.idx
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
nimTitle connections zmq/connections.html module zmq/connections 0
nim ZmqError zmq/connections.html#ZmqError object ZmqError 10
nim ZConnectionImpl zmq/connections.html#ZConnectionImpl object ZConnectionImpl 14
nim ZConnection zmq/connections.html#ZConnection type ZConnection 22
nim zmqError zmq/connections.html#zmqError_2 proc zmqError() 27
nim newZContext zmq/connections.html#newZContext proc newZContext(): ZContext 48
nim newZContext zmq/connections.html#newZContext,int,int proc newZContext(option: int; optval: int): ZContext 52
nim newZContext zmq/connections.html#newZContext,int proc newZContext(numthreads: int): ZContext 58
nim terminate zmq/connections.html#terminate,ZContext proc terminate(ctx: ZContext) 62
nim setsockopt zmq/connections.html#setsockopt,ZSocket,ZSockOptions,T proc setsockopt[T: SomeOrdinal | string](s: ZSocket; option: ZSockOptions; optval: T) 100
nim setsockopt zmq/connections.html#setsockopt,ZConnection,ZSockOptions,T proc setsockopt[T: SomeOrdinal | string](c: ZConnection; option: ZSockOptions;\n optval: T) 111
nim getsockopt zmq/connections.html#getsockopt,ZSocket,ZSockOptions proc getsockopt[T: SomeOrdinal | string](s: ZSocket; option: ZSockOptions): T 118
nim getsockopt zmq/connections.html#getsockopt,ZConnection,ZSockOptions proc getsockopt[T: SomeOrdinal | string](c: ZConnection; option: ZSockOptions): T 131
nim `=sink` zmq/connections.html#=sink,ZConnectionImpl,ZConnectionImpl proc `=sink`(dest: var ZConnectionImpl; source: ZConnectionImpl) 165
nim `=copy` zmq/connections.html#=copy,ZConnectionImpl,ZConnectionImpl proc `=copy`(dest: var ZConnectionImpl; source: ZConnectionImpl) 173
nim reconnect zmq/connections.html#reconnect,ZConnection proc reconnect(conn: ZConnection) 187
nim reconnect zmq/connections.html#reconnect,ZConnection,string proc reconnect(conn: var ZConnection; address: string) 192
nim disconnect zmq/connections.html#disconnect,ZConnection proc disconnect(conn: ZConnection) 198
nim unbind zmq/connections.html#unbind,ZConnection proc unbind(conn: ZConnection) 203
nim bindAddr zmq/connections.html#bindAddr,ZConnection,string proc bindAddr(conn: var ZConnection; address: string) 208
nim connect zmq/connections.html#connect,string,ZSocketType,ZContext proc connect(address: string; mode: ZSocketType; context: ZContext): ZConnection 215
nim connect zmq/connections.html#connect,string,ZSocketType proc connect(address: string; mode: ZSocketType): ZConnection 229
nim listen zmq/connections.html#listen,string,ZSocketType,ZContext proc listen(address: string; mode: ZSocketType; context: ZContext): ZConnection 250
nim listen zmq/connections.html#listen,string,ZSocketType proc listen(address: string; mode: ZSocketType): ZConnection 278
nim close zmq/connections.html#close,ZConnection,int proc close(c: ZConnection; linger: int = 500) 303
nim send zmq/connections.html#send,ZSocket,string,ZSendRecvOptions proc send(s: ZSocket; msg: string; flags: ZSendRecvOptions = NOFLAGS) 308
nim sendAll zmq/connections.html#sendAll,ZSocket,varargs[string] proc sendAll(s: ZSocket; msg: varargs[string]) 323
nim send zmq/connections.html#send,ZConnection,string,ZSendRecvOptions proc send(c: ZConnection; msg: string; flags: ZSendRecvOptions = NOFLAGS) 333
nim sendAll zmq/connections.html#sendAll,ZConnection,varargs[string] proc sendAll(c: ZConnection; msg: varargs[string]) 337
nim waitForReceive zmq/connections.html#waitForReceive,ZSocket,int,ZSendRecvOptions proc waitForReceive(s: ZSocket; timeout: int = -2; flags: ZSendRecvOptions = NOFLAGS): tuple[\n msgAvailable: bool, moreAvailable: bool, msg: string] 367
nim tryReceive zmq/connections.html#tryReceive,ZSocket,ZSendRecvOptions proc tryReceive(s: ZSocket; flags: ZSendRecvOptions = NOFLAGS): tuple[\n msgAvailable: bool, moreAvailable: bool, msg: string] 395
nim receive zmq/connections.html#receive,ZSocket,ZSendRecvOptions proc receive(s: ZSocket; flags: ZSendRecvOptions = NOFLAGS): string 409
nim receiveAll zmq/connections.html#receiveAll,ZSocket,ZSendRecvOptions proc receiveAll(s: ZSocket; flags: ZSendRecvOptions = NOFLAGS): seq[string] 415
nim waitForReceive zmq/connections.html#waitForReceive,ZConnection,int,ZSendRecvOptions proc waitForReceive(c: ZConnection; timeout: int = -1;\n flags: ZSendRecvOptions = NOFLAGS): tuple[msgAvailable: bool,\n moreAvailable: bool, msg: string] 428
nim tryReceive zmq/connections.html#tryReceive,ZConnection,ZSendRecvOptions proc tryReceive(c: ZConnection; flags: ZSendRecvOptions = NOFLAGS): tuple[\n msgAvailable: bool, moreAvailable: bool, msg: string] 441
nim receive zmq/connections.html#receive,ZConnection,ZSendRecvOptions proc receive(c: ZConnection; flags: ZSendRecvOptions = NOFLAGS): string 449
nim receiveAll zmq/connections.html#receiveAll,ZConnection,ZSendRecvOptions proc receiveAll(c: ZConnection; flags: ZSendRecvOptions = NOFLAGS): seq[string] 453
nim proxy zmq/connections.html#proxy,ZConnection,ZConnection proc proxy(frontend, backend: ZConnection) 460
nim proxy zmq/connections.html#proxy,ZConnection,ZConnection,ZConnection proc proxy(frontend, backend, capture: ZConnection) 468
nimgrp tryreceive zmq/connections.html#tryReceive-procs-all proc 395
nimgrp getsockopt zmq/connections.html#getsockopt-procs-all proc 118
nimgrp newzcontext zmq/connections.html#newZContext-procs-all proc 48
nimgrp reconnect zmq/connections.html#reconnect-procs-all proc 187
nimgrp setsockopt zmq/connections.html#setsockopt-procs-all proc 100
nimgrp connect zmq/connections.html#connect-procs-all proc 215
nimgrp waitforreceive zmq/connections.html#waitForReceive-procs-all proc 367
nimgrp listen zmq/connections.html#listen-procs-all proc 250
nimgrp proxy zmq/connections.html#proxy-procs-all proc 460
nimgrp sendall zmq/connections.html#sendAll-procs-all proc 323
nimgrp receive zmq/connections.html#receive-procs-all proc 409
nimgrp receiveall zmq/connections.html#receiveAll-procs-all proc 415
nimgrp send zmq/connections.html#send-procs-all proc 308
Loading

0 comments on commit e17d2f5

Please sign in to comment.